| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | public static function fromHeaders($headers) |
||
| 20 | { |
||
| 21 | $rateLimits = new static; |
||
| 22 | $rateLimits->limit = array_get($headers, 'x_rate_limit_limit'); |
||
| 23 | $rateLimits->remaining = array_get($headers, 'x_rate_limit_remaining'); |
||
| 24 | $rateLimits->reset = array_get($headers, 'x_rate_limit_reset'); |
||
| 25 | |||
| 26 | return $rateLimits; |
||
| 27 | } |
||
| 37 |