| Conditions | 4 |
| Paths | 4 |
| Total Lines | 16 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | protected function shouldIndex(Request $request): bool |
||
| 11 | { |
||
| 12 | if (ends_with($request->getHost(), 'spatie.be')) { |
||
| 13 | return false; |
||
| 14 | } |
||
| 15 | |||
| 16 | if (! app()->environment('production')) { |
||
| 17 | return false; |
||
| 18 | } |
||
| 19 | |||
| 20 | if (! env('ALLOW_ROBOTS')) { |
||
| 21 | return false; |
||
| 22 | } |
||
| 23 | |||
| 24 | return request()->isFront(); |
||
| 25 | } |
||
| 26 | } |
||
| 27 |