| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 36 | public function up(?TableFactory $tableFactory) |
||
| 37 | { |
||
| 38 | $table = $tableFactory->create(self::TABLE); |
||
|
|
|||
| 39 | $table->addColumn('id', Type::INT, 11)->autoIncrement(); |
||
| 40 | $table->addColumn('migration', Type::VARCHAR, 255); |
||
| 41 | $table->addColumn('applied_at', Type::TIMESTAMP)->default('CURRENT_TIMESTAMP', false); |
||
| 42 | } |
||
| 54 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.