استاد اگر امکانش هست بیشتر در اون مورد توضیح بدید.
من این قسمت از آموزش رو اصلا نفهمیدم
public $brand ;
public $model ;
public $color ;
public function __construct($brand,$model,$color){
$this->brand = $brand ;
$this->model = $model ;
$this->color = $color ;
echo "$this->brand $this->model $this->color created! \\n" ;
}