Doktrini modeli yöntemleri yazma

0 Cevap php

Ben model sınıf tanımlarında yöntemleri dahil belirli modeller için işlevsellik özgü saklanması istiyorum. Bu nedenle, örneğin:

abstract class BaseUser extends DoctrineRecord {    

    public function setTableDefinition(){  
       //etc.  
    }  

    public function setUp(){  
       //etc.  
    } 

    public function getName(){  
       return $this->name  
    }
}

$ Isim yaptığı gibi $ this-> name, bir hata atar. Is it possible to access the model properties from here?

0 Cevap