1 | <?php |
||
7 | class AttributeModelNotSavedException extends RuntimeException |
||
8 | { |
||
9 | /** |
||
10 | * Name of the affected Eloquent model. |
||
11 | * |
||
12 | * @var string |
||
13 | */ |
||
14 | protected $model; |
||
15 | |||
16 | /** |
||
17 | * Set the affected Eloquent model. |
||
18 | * |
||
19 | * @param string $model |
||
20 | * @return $this |
||
21 | */ |
||
22 | public function setModel($model) |
||
30 | |||
31 | /** |
||
32 | * Get the affected Eloquent model. |
||
33 | * |
||
34 | * @return string |
||
35 | */ |
||
36 | public function getModel() |
||
40 | } |
||
41 |