File tree 4 files changed +47
-29
lines changed
4 files changed +47
-29
lines changed Original file line number Diff line number Diff line change 3
3
namespace Sherlockode \ConfigurationBundle \FieldType ;
4
4
5
5
use Sherlockode \ConfigurationBundle \Parameter \ParameterDefinition ;
6
- use Sherlockode \ConfigurationBundle \Transformer \CallbackTransformer ;
6
+ use Sherlockode \ConfigurationBundle \Transformer \BooleanTransformer ;
7
7
use Sherlockode \ConfigurationBundle \Transformer \TransformerInterface ;
8
8
use Symfony \Component \Form \Extension \Core \Type \CheckboxType ;
9
9
@@ -36,13 +36,6 @@ public function getName()
36
36
*/
37
37
public function getModelTransformer (ParameterDefinition $ definition )
38
38
{
39
- return new CallbackTransformer (
40
- function ($ data ) {
41
- return (bool )$ data ;
42
- },
43
- function ($ data ) {
44
- return $ data ? 1 : 0 ;
45
- }
46
- );
39
+ return new BooleanTransformer ();
47
40
}
48
41
}
Original file line number Diff line number Diff line change 3
3
namespace Sherlockode \ConfigurationBundle \FieldType ;
4
4
5
5
use Sherlockode \ConfigurationBundle \Parameter \ParameterDefinition ;
6
- use Sherlockode \ConfigurationBundle \Transformer \CallbackTransformer ;
6
+ use Sherlockode \ConfigurationBundle \Transformer \ArrayTransformer ;
7
7
use Sherlockode \ConfigurationBundle \Transformer \TransformerInterface ;
8
8
use Symfony \Component \Form \Extension \Core \Type \ChoiceType ;
9
9
@@ -37,24 +37,6 @@ public function getName()
37
37
*/
38
38
public function getModelTransformer (ParameterDefinition $ definition )
39
39
{
40
- return new CallbackTransformer (
41
- function ($ data ) {
42
- if (!$ data ) {
43
- return null ;
44
- }
45
- if (false !== ($ unserialized = @unserialize ($ data ))) {
46
- return $ unserialized ;
47
- }
48
-
49
- return $ data ;
50
- },
51
- function ($ data ) {
52
- if (is_array ($ data )) {
53
- return serialize ($ data );
54
- }
55
-
56
- return $ data ;
57
- }
58
- );
40
+ return new ArrayTransformer ();
59
41
}
60
42
}
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace Sherlockode \ConfigurationBundle \Transformer ;
4
+
5
+ class ArrayTransformer implements TransformerInterface
6
+ {
7
+ public function transform ($ data )
8
+ {
9
+ if (!$ data ) {
10
+ return null ;
11
+ }
12
+ if (false !== ($ unserialized = @unserialize ($ data ))) {
13
+ return $ unserialized ;
14
+ }
15
+
16
+ return null ;
17
+ }
18
+
19
+ public function reverseTransform ($ data )
20
+ {
21
+ if (is_array ($ data )) {
22
+ return serialize ($ data );
23
+ }
24
+
25
+ return $ data ;
26
+ }
27
+ }
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace Sherlockode \ConfigurationBundle \Transformer ;
4
+
5
+ class BooleanTransformer implements TransformerInterface
6
+ {
7
+ public function transform ($ data )
8
+ {
9
+ return (bool )$ data ;
10
+ }
11
+
12
+ public function reverseTransform ($ data )
13
+ {
14
+ return $ data ? 1 : 0 ;
15
+ }
16
+ }
You can’t perform that action at this time.
0 commit comments