| Conditions | 4 |
| Paths | 8 |
| Total Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | public function __construct($request = null, $primary = null, $secondary = null) |
||
| 38 | { |
||
| 39 | $this->request = $request !== null ? $request : app(Request::class); |
||
| 40 | $this->primary = $primary !== null ? $primary : config('queryScope.primarySeparator'); |
||
| 41 | $this->secondary = $this->secondary !== null ? $secondary : config('queryScope.secondarySeparator'); |
||
| 42 | } |
||
| 43 | |||
| 74 |