| 1 | <?php |
||
| 14 | class DescribeHelper |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * Returns the Describe instance based from database. |
||
| 18 | * NOTE: To be removed in v1.0.0. Use self::make instead. |
||
| 19 | * |
||
| 20 | * @param \CI_DB_query_builder $database |
||
| 21 | * @return \Rougin\Describe\Describe |
||
| 22 | */ |
||
| 23 | public static function createInstance($database) |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Returns the Describe instance based from database. |
||
| 30 | * |
||
| 31 | * @param \CI_DB_query_builder $database |
||
| 32 | * @return \Rougin\Describe\Describe |
||
| 33 | */ |
||
| 34 | 27 | public static function make($database) |
|
| 56 | } |
||
| 57 |