| Total Complexity | 3 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class ArabicNumbers extends TransformsRequest |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * The attributes that should not be trimmed. |
||
| 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 | * @return mixed |
||
| 24 | */ |
||
| 25 | 4 | protected function transform($key, $value) |
|
| 36 |