Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
45 | private function setContext() { |
||
46 | stream_context_set_default( |
||
47 | array( |
||
48 | 'http' => array( |
||
49 | 'method' => 'GET', |
||
50 | 'timeout' => 10, |
||
51 | 'header' => "User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:20.0; Favicon; +https://github.com/mpclarkson/icons-craper) Gecko/20100101 Firefox/32.0\r\n", |
||
52 | ) |
||
53 | ) |
||
54 | ); |
||
55 | } |
||
56 | } |