| 1 | <?php |
||
| 15 | abstract class BaseRepository extends \yii\base\Component |
||
| 16 | { |
||
| 17 | public $table; |
||
| 18 | |||
| 19 | public function find(ActiveQuery $query) |
||
| 25 | |||
| 26 | public function getTable() |
||
| 30 | |||
| 31 | protected $_recordClass; |
||
| 32 | |||
| 33 | public function setRecordClass($value) |
||
| 37 | |||
| 38 | public function getRecordClass() |
||
| 46 | |||
| 47 | public function findRecordClass() |
||
| 53 | } |
||
| 54 |
An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.
If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.