Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 2 |
1 | <?php |
||
66 | 2 | public function limits(array $limits = []) |
|
67 | { |
||
68 | $headers = [ |
||
69 | 2 | 'X-Query-Limit-Limit', |
|
70 | 2 | 'X-Query-Limit-Remaining', |
|
71 | 'X-Query-Limit-Request-Queries' |
||
72 | 2 | ]; |
|
73 | |||
74 | 2 | foreach ($headers as $header) { |
|
75 | 2 | $limits[$header] = $this->getHeader($header); |
|
76 | 2 | } |
|
77 | |||
78 | 2 | return $limits; |
|
79 | } |
||
80 | |||
125 |