1 | <?php |
||
9 | abstract class SqliteModel extends Model |
||
10 | { |
||
11 | /** |
||
12 | * $tableCreated. |
||
13 | * |
||
14 | * @var array |
||
15 | */ |
||
16 | protected static $tableCreated = []; |
||
17 | |||
18 | /** |
||
19 | * Get the table associated with the model. |
||
20 | * |
||
21 | * @return string |
||
22 | */ |
||
23 | 31 | public function getTable() |
|
27 | |||
28 | /** |
||
29 | * Resolve a connection instance. |
||
30 | * |
||
31 | * @param string|null $connection |
||
32 | * @return \Illuminate\Database\Connection |
||
33 | */ |
||
34 | 31 | public static function resolveConnection($connection = null) |
|
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | * |
||
42 | * @param string $table |
||
43 | * @return string |
||
44 | */ |
||
45 | 31 | protected function createTable($table) |
|
64 | |||
65 | /** |
||
66 | * createSchema. |
||
67 | * |
||
68 | * @param Blueprint $table |
||
69 | * @return void |
||
70 | */ |
||
71 | abstract protected function createSchema(Blueprint $table); |
||
72 | } |
||
73 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.