Quicktip: Mehrere Attribute auf einmal anlegen

Erspähte ich neulich im Quellcode von Symfony 2 – mir war vorher nicht bewusst, dass das möglich ist.

class Foo { 	protected $var1 = "1234",  			  $var2 = "4567",  			  $var3; 			   	public $var4,  		   $var5 = false; 		    	private $var6; } 

Gefällt mir besser als die mehrfache, wiederkehrende Verwendung des gleichen Schlüsselworts. Nur unpraktisch bezogen auf Docblocks.


Deprecated: Directive 'allow_url_include' is deprecated in Unknown on line 0