Conditions | 4 |
Paths | 3 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
42 | public function detect(array $headers, $bodyString, $url) |
||
43 | { |
||
44 | if (array_key_exists('server', $headers) && strtolower($headers['server']) === 'cloudflare-nginx') { |
||
45 | return true; |
||
46 | } |
||
47 | |||
48 | if (array_key_exists('cf-ray', $headers)) { |
||
|
|||
49 | return true; |
||
50 | } |
||
51 | |||
52 | return false; |
||
53 | } |
||
54 | } |
||
55 |