Completed
Push — extensions-support ( 5c6110...f3b32a )
by Patrick
03:47
created
src/Extensions/Gedmo/Sortable/SortableGroup.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -48,15 +48,15 @@
 block discarded – undo
48 48
      */
49 49
     public static function enable()
50 50
     {
51
-        Field::macro(self::MACRO_METHOD, function (Field $builder) {
51
+        Field::macro(self::MACRO_METHOD, function(Field $builder) {
52 52
             return new static($builder->getClassMetadata(), $builder->getName());
53 53
         });
54 54
 
55
-        ManyToOne::macro(self::MACRO_METHOD, function (ManyToOne $builder) {
55
+        ManyToOne::macro(self::MACRO_METHOD, function(ManyToOne $builder) {
56 56
             return new static($builder->getClassMetadata(), $builder->getRelation());
57 57
         });
58 58
 
59
-        ManyToMany::macro(self::MACRO_METHOD, function (ManyToMany $builder) {
59
+        ManyToMany::macro(self::MACRO_METHOD, function(ManyToMany $builder) {
60 60
             return new static($builder->getClassMetadata(), $builder->getRelation());
61 61
         });
62 62
     }
Please login to merge, or discard this patch.
src/Extensions/Gedmo/Sortable/SortablePosition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
      */
47 47
     public static function enable()
48 48
     {
49
-        Field::macro(self::MACRO_METHOD, function (Field $builder) {
49
+        Field::macro(self::MACRO_METHOD, function(Field $builder) {
50 50
             return new static($builder->getClassMetadata(), $builder->getName());
51 51
         });
52 52
     }
Please login to merge, or discard this patch.