| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php namespace Arcanedev\Localization\Events; |
||
| 47 | 45 | public function __construct(Model $model, $attribute, $locale, $oldValue, $newValue) |
|
| 48 | { |
||
| 49 | 45 | $this->model = $model; |
|
| 50 | 45 | $this->attribute = $attribute; |
|
| 51 | 45 | $this->locale = $locale; |
|
| 52 | 45 | $this->oldValue = $oldValue; |
|
| 53 | 45 | $this->newValue = $newValue; |
|
| 54 | 45 | } |
|
| 55 | } |
||
| 56 |