For better readability, do not put multiple property declarations in the same statement.
<?php class Foo { private $bar = 1, $bar2 = 2; }
<?php class Foo { private $bar1 = 1; private $bar2 = 2; }