| 1 | <?php |
||
| 11 | class ModelHelper |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * Returns the model class of the said table. |
||
| 15 | * NOTE: To be removed in v1.0.0. Use self::make instead. |
||
| 16 | * |
||
| 17 | * @param string|object $table |
||
| 18 | * @return array |
||
| 19 | */ |
||
| 20 | 39 | public static function createInstance($table) |
|
| 24 | |||
| 25 | /** |
||
| 26 | * Returns the model class of the said table. |
||
| 27 | * |
||
| 28 | * @param string|object $table |
||
| 29 | * @return array |
||
| 30 | */ |
||
| 31 | 39 | public static function make($table) |
|
| 47 | } |
||
| 48 |