Passed
Push — ft/urls ( 625b56...d52783 )
by Ben
25:47
created
src/Concerns/Sortable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
      */
20 20
     public static function reorderAgainstSiblings(array $sequence)
21 21
     {
22
-        array_walk($sequence, function ($id, $i) {
22
+        array_walk($sequence, function($id, $i) {
23 23
             self::findOrFail($id)->reorder($i);
24 24
         });
25 25
     }
Please login to merge, or discard this patch.
src/Concerns/HasPeriod/SortPeriodDateScope.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Thinktomorrow\Chief\Concerns\HasPeriod;
6 6
 
Please login to merge, or discard this patch.
src/Concerns/Archivable/ArchiveScope.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Thinktomorrow\Chief\Concerns\Archivable;
6 6
 
Please login to merge, or discard this patch.
src/Relations/AvailableChildren.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
     public function onlyModules(): Collection
35 35
     {
36
-        return $this->collection()->reject(function ($item) {
36
+        return $this->collection()->reject(function($item) {
37 37
             if ($item instanceof Page || $item instanceof StoredSetReference) {
38 38
                 return true;
39 39
             }
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
     public function onlyPages(): Collection
44 44
     {
45
-        return $this->collection()->filter(function ($item) {
45
+        return $this->collection()->filter(function($item) {
46 46
             if ($item instanceof Page) {
47 47
                 return true;
48 48
             }
@@ -72,12 +72,12 @@  discard block
 block discarded – undo
72 72
 
73 73
         // Merging the results of all the pages and all the modules, then filter by the config
74 74
         // This prevents us from having duplicates and also reduces the query load.
75
-        $collection = $collection->filter(function ($page) use ($available_children_types) {
75
+        $collection = $collection->filter(function($page) use ($available_children_types) {
76 76
             return in_array(get_class($page), $available_children_types);
77 77
         });
78 78
 
79 79
         // Filter out our already loaded pages and modules
80
-        $remaining_children_types = collect($available_children_types)->reject(function ($type) {
80
+        $remaining_children_types = collect($available_children_types)->reject(function($type) {
81 81
             return (new $type() instanceof Page || new $type() instanceof Module);
82 82
         });
83 83
 
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
             $collection = collect(array_merge($collection->all(), (new $type())->all()->all()));
89 89
         }
90 90
         // Filter out our parent
91
-        return $this->collection = $collection->reject(function ($item) {
91
+        return $this->collection = $collection->reject(function($item) {
92 92
             if ($item instanceof $this->parent) {
93 93
                 return $item->id == $this->parent->id;
94 94
             }
Please login to merge, or discard this patch.
src/Relations/Relation.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
     {
104 104
         $relations = static::where(function ($query) use ($type, $id) {
105 105
             return $query->where('parent_type', $type)
106
-                         ->where('parent_id', $id);
106
+                            ->where('parent_id', $id);
107 107
         })->orWhere(function ($query) use ($type, $id) {
108 108
             return $query->where('child_type', $type)
109 109
                 ->where('child_id', $id);
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
             ->orderBy('sort', 'ASC')
52 52
             ->get();
53 53
 
54
-        return $relations->map(function (Relation $relation) {
54
+        return $relations->map(function(Relation $relation) {
55 55
             $parent = $relation->parent;
56 56
             $parent->relation = $relation;
57 57
             return $parent;
@@ -65,14 +65,14 @@  discard block
 block discarded – undo
65 65
                             ->orderBy('sort', 'ASC')
66 66
                             ->get();
67 67
 
68
-        return $relations->map(function (Relation $relation) use ($parent_type, $parent_id) {
68
+        return $relations->map(function(Relation $relation) use ($parent_type, $parent_id) {
69 69
 
70 70
             // It could be that the child itself is soft-deleted, if this is the case, we will ignore it and move on.
71 71
             if (!$child = $relation->child) {
72 72
                 if (!$relation->child()->withTrashed()->first()) {
73 73
 //                if ((!method_exists($childInstance, 'trashed')) || ! $childInstance->onlyTrashed()->find($relation->child_id)) {
74 74
                     // If we cannot retrieve it then he collection type is possibly off, this is a database inconsistency and should be addressed
75
-                    throw new \DomainException('Corrupt relation reference. Related child ['.$relation->child_type.'@'.$relation->child_id.'] could not be retrieved for parent [' . $parent_type.'@'.$parent_id.']. Make sure the morph key can resolve to a valid class.');
75
+                    throw new \DomainException('Corrupt relation reference. Related child ['.$relation->child_type.'@'.$relation->child_id.'] could not be retrieved for parent ['.$parent_type.'@'.$parent_id.']. Make sure the morph key can resolve to a valid class.');
76 76
                 }
77 77
 
78 78
                 return null;
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
         })
85 85
 
86 86
         // In case of soft-deleted entries, this will be null and should be ignored. We make sure that keys are reset in case of removed child
87
-        ->reject(function ($child) {
87
+        ->reject(function($child) {
88 88
             return is_null($child);
89 89
         })
90 90
         ->values();
@@ -101,10 +101,10 @@  discard block
 block discarded – undo
101 101
 
102 102
     public static function deleteRelationsOf($type, $id)
103 103
     {
104
-        $relations = static::where(function ($query) use ($type, $id) {
104
+        $relations = static::where(function($query) use ($type, $id) {
105 105
             return $query->where('parent_type', $type)
106 106
                          ->where('parent_id', $id);
107
-        })->orWhere(function ($query) use ($type, $id) {
107
+        })->orWhere(function($query) use ($type, $id) {
108 108
             return $query->where('child_type', $type)
109 109
                 ->where('child_id', $id);
110 110
         })->get();
Please login to merge, or discard this patch.
src/Media/MediaType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Thinktomorrow\Chief\Media;
6 6
 
Please login to merge, or discard this patch.
src/Settings/SettingsManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     {
13 13
         $this->fetch();
14 14
 
15
-        if (! isset($this->values[$key])) {
15
+        if (!isset($this->values[$key])) {
16 16
             return $default;
17 17
         }
18 18
         
Please login to merge, or discard this patch.
src/Settings/SettingsServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 
14 14
     public function register()
15 15
     {
16
-        $this->app->singleton(SettingsManager::class, function ($app) {
16
+        $this->app->singleton(SettingsManager::class, function($app) {
17 17
             return new SettingsManager();
18 18
         });
19 19
     }
Please login to merge, or discard this patch.
src/Settings/Setting.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     private function defaultField()
46 46
     {
47 47
         return InputField::make($this->key)
48
-                    ->label(ucfirst(str_replace(['-','_','.'], ' ', $this->key)));
48
+                    ->label(ucfirst(str_replace(['-', '_', '.'], ' ', $this->key)));
49 49
     }
50 50
 
51 51
     public static function refreshFieldsFromConfig()
Please login to merge, or discard this patch.