-
-
Save defaultpage/e1baeefd599951deb8afdae20f69e36c to your computer and use it in GitHub Desktop.
Revisions
-
hkdobrev renamed this gist
Jan 23, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
hkdobrev renamed this gist
Jan 23, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
hkdobrev revised this gist
Jan 23, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ PHP Convention for the order of a class ---------------------------------------- Accepting suggestions. -
hkdobrev revised this gist
Jan 23, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,7 @@ use Another\Vendor\Library\ClassName; abstract class ClassName extends AnotherClass implements Countable, Serializable { const CONSTANTS = 'top'; -
hkdobrev revised this gist
Jan 23, 2014 . 1 changed file with 4 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ PHP Convention for the order of a class ---------------------------------------- Accepting suggestions. -
hkdobrev revised this gist
Jan 23, 2014 . 1 changed file with 5 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,7 +6,11 @@ class ClassName extends AnotherClass implements Countable, Serializable { const CONSTANTS = 'top'; use someTrait, anotherTrait { anotherTrait::traitMethod insteadof someTrait; someTrait::anotherTraitMethod insteadof anotherTrait; someTrait::traitMethod as duplicate; }; public static $properties; protected static $properties; -
hkdobrev revised this gist
Jan 23, 2014 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ <?php namespace Vendor\Library; use Another\Vendor\Library\ClassName; class ClassName extends AnotherClass implements Countable, Serializable { -
hkdobrev revised this gist
Jan 23, 2014 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -26,8 +26,8 @@ public function __destruct() {} public function __get() {} public function __set() {} public function getters() {} public function setters() {} public function methods() {} final public function methods() {} -
hkdobrev revised this gist
Jan 23, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,7 +6,7 @@ class ClassName extends AnotherClass implements Countable, Serializable { const CONSTANTS = 'top'; use someTrait; public static $properties; protected static $properties; -
hkdobrev revised this gist
Jan 23, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,7 +6,7 @@ class ClassName extends AnotherClass implements Countable, Serializable { const CONSTANTS = 'top'; use someTrait {}; public static $properties; protected static $properties; -
hkdobrev revised this gist
Jan 23, 2014 . 1 changed file with 25 additions and 25 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,40 +4,40 @@ class ClassName extends AnotherClass implements Countable, Serializable { const CONSTANTS = 'top'; use traitName {}; public static $properties; protected static $properties; private static $properties; public static function methods() {} protected static function methods() {} private static function methods() {} public $properties; protected $properties; private $properties; public function __construct() {} public function __destruct() {} public function __get() {} public function __set() {} public getters() {} public setters() {} public function methods() {} final public function methods() {} protected function methods() {} final protected function methods() {} private function methods() {} abstract public function methods(); abstract protected function methods(); abstract private function methods(); } -
hkdobrev created this gist
Jan 23, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,43 @@ <?php namespace Vendor\Project; use Vendor\Library; class ClassName extends AnotherClass implements Countable, Serializable { const CONSTANTS = 'top'; use traitName {}; public static $properties; protected static $properties; private static $properties; public static function methods() {} protected static function methods() {} private static function methods() {} public $properties; protected $properties; private $properties; public function __construct() {} public function __destruct() {} public function __get() {} public function __set() {} public getters() {} public setters() {} public function methods() {} final public function methods() {} protected function methods() {} final protected function methods() {} private function methods() {} abstract public function methods(); abstract protected function methods(); abstract private function methods(); }