| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | public function __construct($src, array $operations = []) |
||
| 23 | { |
||
| 24 | $src = $this->validateSource($src); |
||
| 25 | $this->operations()->set($operations); |
||
| 26 | $this->processingService = new EloquentProcessingService( |
||
| 27 | new EloquentProcessorResolver(), |
||
| 28 | $this->operations(), |
||
| 29 | $src |
||
| 30 | ); |
||
| 31 | } |
||
| 32 | |||
| 48 |