| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 54 | public function heartbeatResponse($response, $data) |
||
| 55 | { |
||
| 56 | /** |
||
| 57 | * check whether count of tickets is approaching the potential |
||
| 58 | * limits for the server. |
||
| 59 | */ |
||
| 60 | if (! empty($data['input_count'])) { |
||
| 61 | $response['max_input_vars_check'] = $this->environment->max_input_vars_limit_check( |
||
| 62 | $data['input_count'] |
||
| 63 | ); |
||
| 64 | } |
||
| 65 | return $response; |
||
| 66 | } |
||
| 67 | } |
||
| 68 |