| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 33 | public function __construct(Model $model, |
||
| 34 | string $request_token, |
||
| 35 | int $user_id, |
||
| 36 | string $route, |
||
| 37 | array $model_changes = [], |
||
| 38 | string $description = null) |
||
| 39 | { |
||
| 40 | $this->model = $model; |
||
| 41 | $this->request_token = $request_token; |
||
| 42 | $this->user_id = $user_id; |
||
| 43 | $this->route = $route; |
||
| 44 | $this->model_changes = $model_changes; |
||
| 45 | $this->description = $description; |
||
| 46 | } |
||
| 65 |