1 | <?php |
||
7 | class SanitizePrices extends TransformsRequest |
||
8 | { |
||
9 | /** |
||
10 | * The attributes that should be sanitized. |
||
11 | * |
||
12 | * @var array |
||
13 | */ |
||
14 | protected $except = [ |
||
15 | // |
||
16 | ]; |
||
17 | |||
18 | /** |
||
19 | * Transform the given value. |
||
20 | * |
||
21 | * @param string $key |
||
22 | * @param mixed $value |
||
23 | * |
||
24 | * @return mixed |
||
25 | */ |
||
26 | protected function transform($key, $value) |
||
42 | } |
||
43 |