Bu şekilde yapılması gereken bir sınıf üyesi, gibi bir dizi bildirirken?
class Test1 {
private $paths = array();
public function __construct() {
// some code here
}
}
veya
class Test2 {
private $paths;
public function __construct() {
$this->paths = array();
// some code here
}
}
Which one is better in terms of good practices and perfveyamance? What would you recommend?