| 1 | <?php |
||
| 9 | class Model_Base { |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @var array |
||
| 13 | */ |
||
| 14 | protected $_extra_args; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Model_Base constructor. |
||
| 18 | * |
||
| 19 | * @param array $args |
||
| 20 | */ |
||
| 21 | 9 | public function __construct( $args = array() ) { |
|
| 35 | |||
| 36 | /** |
||
| 37 | * @param string $method_name |
||
| 38 | * @param array $args |
||
| 39 | * |
||
| 40 | * @return mixed|null |
||
| 41 | */ |
||
| 42 | 6 | public function __call( $method_name, $args ) { |
|
| 54 | |||
| 55 | } |
||
| 56 |