| Total Complexity | 1 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | trait StorageTrait |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * The name of the directory in storage that has files for this model. |
||
| 9 | * @return mixed |
||
| 10 | */ |
||
| 11 | abstract public function filesDir(); |
||
| 12 | |||
| 13 | /** |
||
| 14 | * The file name fo this model. |
||
| 15 | * @return mixed |
||
| 16 | */ |
||
| 17 | abstract public function getFileName(); |
||
| 18 | |||
| 19 | public function getImageDimensions() |
||
| 26 |