| Total Complexity | 1 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | abstract class Event |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * The model instance that failed the upload. |
||
| 12 | * |
||
| 13 | * @var \Illuminate\Database\Eloquent\Model |
||
| 14 | */ |
||
| 15 | public $model; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * The failure file. |
||
| 19 | * |
||
| 20 | * @var \Illuminate\Http\File |
||
| 21 | */ |
||
| 22 | public $file; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Construtor da classe. |
||
| 26 | * |
||
| 27 | * @return void |
||
| 28 | */ |
||
| 29 | 21 | public function __construct(Model $model, File $file) |
|
| 35 |