| Conditions | 1 |
| Paths | 1 |
| Total Lines | 5 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | public function up() |
||
| 10 | { |
||
| 11 | $mods = implode("','", [ManipulatorInterface::THUMBNAIL_INSET, ManipulatorInterface::THUMBNAIL_OUTBOUND, ThumbnailSize::RESIZE]); |
||
|
|
|||
| 12 | $this->alterColumn(ThumbnailSize::tableName(), 'resize_mode', "ENUM ('$mods') DEFAULT '" . ManipulatorInterface::THUMBNAIL_INSET . "'"); |
||
| 13 | } |
||
| 14 | |||
| 32 |
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.