| 1 | <?php |
||
| 4 | class ProfilingJsonResponse extends JsonResponse { |
||
| 5 | public $profiling = []; |
||
| 6 | |||
| 7 | public function setProfile(array $profiling) { |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @param JsonResponse $jsonResponse |
||
| 13 | * @param array $data |
||
| 14 | * @return array|ProfilingJsonResponse |
||
| 15 | */ |
||
| 16 | public static function createFromPrevious(JsonResponse $jsonResponse, array $data) { |
||
| 21 | } |
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.