Completed
Push — extensions-support ( dc3ff8...1706f7 )
by Guido
05:23 queued 01:49
created
src/Builders/Traits/Queueable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
         /** @var Buildable[] $queued */
40 40
         $queued = $this->getQueued();
41 41
 
42
-        usort($queued, function (Buildable $buildable) {
42
+        usort($queued, function(Buildable $buildable) {
43 43
             return $buildable instanceof Delay ? 1 : 0;
44 44
         });
45 45
 
Please login to merge, or discard this patch.
src/Extensions/Gedmo/Tree.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(self::MACRO_METHOD, function (Fluent $builder, callable $callback = null) {
37
+        Builder::macro(self::MACRO_METHOD, function(Fluent $builder, callable $callback = null) {
38 38
             $tree = new static($builder);
39 39
 
40 40
             if (is_callable($callback)) {
Please login to merge, or discard this patch.
src/Extensions/Gedmo/MaterializedPath.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use LaravelDoctrine\Fluent\Buildable;
6 6
 use LaravelDoctrine\Fluent\Builders\Traits\Queueable;
7
-use LaravelDoctrine\Fluent\Extensions\ExtensibleClassMetadata;
8 7
 use LaravelDoctrine\Fluent\Extensions\Extension;
9 8
 
10 9
 class MaterializedPath extends TreeStrategy implements Buildable, Extension
Please login to merge, or discard this patch.