Completed
Push — extensions-support ( 1dda5d...e16b25 )
by Guido
03:56 queued 49s
created
src/Extensions/Gedmo/TreePathHash.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      */
38 38
     public static function enable()
39 39
     {
40
-        Field::macro(self::MACRO_METHOD, function (Field $field) {
40
+        Field::macro(self::MACRO_METHOD, function(Field $field) {
41 41
             return new static($field->getClassMetadata(), $field->getName());
42 42
         });
43 43
     }
Please login to merge, or discard this patch.
src/Extensions/Gedmo/TreePathSource.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      */
38 38
     public static function enable()
39 39
     {
40
-        Field::macro(self::MACRO_METHOD, function (Field $field) {
40
+        Field::macro(self::MACRO_METHOD, function(Field $field) {
41 41
             return new static($field->getClassMetadata(), $field->getName());
42 42
         });
43 43
     }
Please login to merge, or discard this patch.
src/Extensions/Gedmo/TreeRight.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      */
38 38
     public static function enable()
39 39
     {
40
-        Field::macro(self::MACRO_METHOD, function (Field $field) {
40
+        Field::macro(self::MACRO_METHOD, function(Field $field) {
41 41
             return new static($field->getClassMetadata(), $field->getName());
42 42
         });
43 43
     }
Please login to merge, or discard this patch.
src/Extensions/Gedmo/TreeRoot.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,11 +37,11 @@
 block discarded – undo
37 37
      */
38 38
     public static function enable()
39 39
     {
40
-        Field::macro(self::MACRO_METHOD, function (Field $field) {
40
+        Field::macro(self::MACRO_METHOD, function(Field $field) {
41 41
             return new static($field->getClassMetadata(), $field->getName());
42 42
         });
43 43
 
44
-        ManyToOne::macro(self::MACRO_METHOD, function (ManyToOne $relation) {
44
+        ManyToOne::macro(self::MACRO_METHOD, function(ManyToOne $relation) {
45 45
             return new static($relation->getClassMetadata(), $relation->getRelation());
46 46
         });
47 47
     }
Please login to merge, or discard this patch.
src/Extensions/Gedmo/TreeParent.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,11 +37,11 @@
 block discarded – undo
37 37
      */
38 38
     public static function enable()
39 39
     {
40
-        Field::macro(self::MACRO_METHOD, function (Field $field) {
40
+        Field::macro(self::MACRO_METHOD, function(Field $field) {
41 41
             return new static($field->getClassMetadata(), $field->getName());
42 42
         });
43 43
 
44
-        ManyToOne::macro(self::MACRO_METHOD, function (ManyToOne $relation) {
44
+        ManyToOne::macro(self::MACRO_METHOD, function(ManyToOne $relation) {
45 45
             return new static($relation->getClassMetadata(), $relation->getRelation());
46 46
         });
47 47
     }
Please login to merge, or discard this patch.
src/Extensions/Gedmo/Loggable.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -37,20 +37,20 @@
 block discarded – undo
37 37
      */
38 38
     public static function enable()
39 39
     {
40
-        Entity::macro('loggable', function (Entity $builder, $logEntry = null) {
40
+        Entity::macro('loggable', function(Entity $builder, $logEntry = null) {
41 41
             $loggable = new static($builder->getClassMetadata(), $logEntry);
42 42
             $loggable->build();
43 43
         });
44 44
 
45
-        Field::macro('versioned', function (Field $builder) {
45
+        Field::macro('versioned', function(Field $builder) {
46 46
             return new Versioned($builder->getClassMetadata(), $builder->getName());
47 47
         });
48 48
 
49
-        ManyToOne::macro('versioned', function (ManyToOne $builder) {
49
+        ManyToOne::macro('versioned', function(ManyToOne $builder) {
50 50
             return new Versioned($builder->getClassMetadata(), $builder->getRelation());
51 51
         });
52 52
 
53
-        OneToOne::macro('versioned', function (OneToOne $builder) {
53
+        OneToOne::macro('versioned', function(OneToOne $builder) {
54 54
             return new Versioned($builder->getClassMetadata(), $builder->getRelation());
55 55
         });
56 56
     }
Please login to merge, or discard this patch.