1 | <?php |
||
16 | class ConvertToSnakeCase extends TransformsRequest |
||
17 | { |
||
18 | /** |
||
19 | * A list of attributes that shouldn't be converted. |
||
20 | * |
||
21 | * @var array |
||
22 | */ |
||
23 | protected $except = [ |
||
24 | // |
||
25 | ]; |
||
26 | |||
27 | /** |
||
28 | * Clean the data in the given array. |
||
29 | * |
||
30 | * @param array $data |
||
31 | * @return array |
||
32 | */ |
||
33 | protected function cleanArray(array $data) |
||
43 | } |
||
44 |