Completed
Push — 1.1 ( d166b0...e7f438 )
by Patrick
11:31 queued 07:46
created
src/Extensions/Gedmo/TreeLeft.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/TreeLevel.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/TreePath.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
      */
60 60
     public static function enable()
61 61
     {
62
-        Field::macro(self::MACRO_METHOD, function (Field $field, $separator = '|') {
62
+        Field::macro(self::MACRO_METHOD, function(Field $field, $separator = '|') {
63 63
             return new static($field->getClassMetadata(), $field->getName(), $separator);
64 64
         });
65 65
     }
Please login to merge, or discard this patch.
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/Loggable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      */
35 35
     public static function enable()
36 36
     {
37
-        Builder::macro('loggable', function (Builder $builder, $logEntry = null) {
37
+        Builder::macro('loggable', function(Builder $builder, $logEntry = null) {
38 38
             $loggable = new static($builder->getClassMetadata(), $logEntry);
39 39
             $loggable->build();
40 40
         });
Please login to merge, or discard this patch.
src/Extensions/Gedmo/TranslationClass.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
-        Builder::macro(self::MACRO_METHOD, function (Builder $builder, $class) {
40
+        Builder::macro(self::MACRO_METHOD, function(Builder $builder, $class) {
41 41
             return new static($builder->getClassMetadata(), $class);
42 42
         });
43 43
     }
Please login to merge, or discard this patch.
src/Extensions/Gedmo/Uploadable.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
      */
79 79
     public static function enable()
80 80
     {
81
-        Builder::macro(self::MACRO_METHOD, function (Builder $builder) {
81
+        Builder::macro(self::MACRO_METHOD, function(Builder $builder) {
82 82
             return new static($builder->getClassMetadata());
83 83
         });
84 84
 
@@ -312,7 +312,7 @@  discard block
 block discarded – undo
312 312
                 'pathMethod'        => $this->pathMethod,
313 313
                 'callback'          => $this->callback,
314 314
                 'filenameGenerator' => $this->filenameGenerator,
315
-                'maxSize'           => (double)$this->maxSize,
315
+                'maxSize'           => (double) $this->maxSize,
316 316
                 'allowedTypes'      => $this->allowedTypes,
317 317
                 'disallowedTypes'   => $this->disallowedTypes,
318 318
             ]
Please login to merge, or discard this patch.