Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
13 | 22 | public function __construct() |
|
14 | { |
||
15 | 22 | $this->converters = array(); |
|
16 | |||
17 | $this->add('upperCase', new CallbackValueConverter(function ($item) { |
||
18 | 1 | return strtoupper($item); |
|
19 | 22 | })); |
|
20 | 22 | $this->add('lowerCase', new CallbackValueConverter(function ($item) { |
|
21 | 1 | return strtolower($item); |
|
22 | 22 | })); |
|
23 | 22 | } |
|
24 | |||
53 |