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