Completed
Push — extensions-support ( 9e9e57...39a83b )
by Guido
03:54
created
src/Extensions/Gedmo/Versioned.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,15 +37,15 @@
 block discarded – undo
37 37
 
38 38
     public static function enable()
39 39
     {
40
-        Field::macro(self::MACRO_METHOD, function (Field $builder) {
40
+        Field::macro(self::MACRO_METHOD, function(Field $builder) {
41 41
             return new static($builder->getClassMetadata(), $builder->getName());
42 42
         });
43 43
 
44
-        ManyToOne::macro(self::MACRO_METHOD, function (ManyToOne $builder) {
44
+        ManyToOne::macro(self::MACRO_METHOD, function(ManyToOne $builder) {
45 45
             return new static($builder->getClassMetadata(), $builder->getRelation());
46 46
         });
47 47
 
48
-        OneToOne::macro(self::MACRO_METHOD, function (OneToOne $builder) {
48
+        OneToOne::macro(self::MACRO_METHOD, function(OneToOne $builder) {
49 49
             return new static($builder->getClassMetadata(), $builder->getRelation());
50 50
         });
51 51
     }
Please login to merge, or discard this patch.