OggettoWeb / Oggetto-Coding-Standard

PHP Code Sniffer rules for Oggetto coding standard
4 stars 9 forks source link

Любые переменные классе определены в начале класса #21

Open dankocherga opened 11 years ago

dankocherga commented 11 years ago

Правильно:

class Foo
{
   private $_bar;

   public function xxx()
   {
   }
}

Неправильно:

class Foo
{
   public function xxx()
   {
   }

   private $_bar;
}