| Total Complexity | 5 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class Filters |
||
| 6 | { |
||
| 7 | public static $cacheIpGoogle; |
||
| 8 | |||
| 9 | public static function googlebot($line) |
||
| 10 | { |
||
| 11 | return false !== stripos($line->getUserAgent(), 'googlebot'); |
||
| 12 | } |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Strict means we check the ip too. |
||
| 16 | */ |
||
| 17 | public static function googlebotStrict($line) |
||
| 28 | } |
||
| 29 | |||
| 30 | public static function bingbot($line) |
||
| 33 | } |
||
| 34 | } |
||
| 35 |