| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper { |
||
| 24 | /** @var ISchemaWrapper $schema */ |
||
| 25 | $schema = $schemaClosure(); |
||
| 26 | |||
| 27 | $this->ensureColumnIsNullable($schema, 'facerecog_persons', 'is_valid'); |
||
| 28 | $this->ensureColumnIsNullable($schema, 'facerecog_images', 'is_processed'); |
||
| 29 | |||
| 30 | return null; |
||
| 31 | } |
||
| 46 |