Completed
Push — master ( adce74...dc9e44 )
by Gino
01:29
created
models/ModelAbstract.php 1 patch
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
     /**
21 21
      * @var array
22 22
      */
23
-    public static $sortingOptions = [];
23
+    public static $sortingOptions = [ ];
24 24
 
25 25
     /**
26 26
      * Sets the URL attribute with a URL to this object
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
      *
54 54
      * @return mixed
55 55
      */
56
-    public function scopeListFrontend(Builder $query, array $options = [])
56
+    public function scopeListFrontend(Builder $query, array $options = [ ])
57 57
     {
58 58
         $this->withRelation($query, $options);
59 59
 
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
      */
104 104
     protected function queryDisplayEmpty(Builder $query, array $options)
105 105
     {
106
-        if (empty($options['displayEmpty'])) {
106
+        if (empty($options[ 'displayEmpty' ])) {
107 107
             $query
108 108
                 ->having('posts_count', '>', 0);
109 109
         }
@@ -117,11 +117,11 @@  discard block
 block discarded – undo
117 117
      */
118 118
     protected function queryPostSlug(Builder $query, array $options)
119 119
     {
120
-        if (!empty($options['post'])) {
120
+        if (!empty($options[ 'post' ])) {
121 121
             $query->whereHas(
122 122
                 'posts',
123
-                static function ($query) use ($options) {
124
-                    ModelAbstract::whereTranslatableProperty($query, 'slug', $options['post']);
123
+                static function($query) use ($options) {
124
+                    ModelAbstract::whereTranslatableProperty($query, 'slug', $options[ 'post' ]);
125 125
                 }
126 126
             );
127 127
         }
@@ -135,8 +135,8 @@  discard block
 block discarded – undo
135 135
      */
136 136
     private function queryLimit(Builder $query, array $options)
137 137
     {
138
-        if (!empty($options['limit'])) {
139
-            $query->take($options['limit']);
138
+        if (!empty($options[ 'limit' ])) {
139
+            $query->take($options[ 'limit' ]);
140 140
         }
141 141
     }
142 142
 
@@ -148,11 +148,11 @@  discard block
 block discarded – undo
148 148
      */
149 149
     private function queryOrderBy(Builder $query, array $options)
150 150
     {
151
-        if (!empty($options['sort']) && \array_key_exists($options['sort'], static::$sortingOptions)) {
152
-            if ($options['sort'] === 'random') {
151
+        if (!empty($options[ 'sort' ]) && \array_key_exists($options[ 'sort' ], static::$sortingOptions)) {
152
+            if ($options[ 'sort' ] === 'random') {
153 153
                 $query->inRandomOrder();
154 154
             } else {
155
-                list($sortField, $sortDirection) = explode(' ', $options['sort']);
155
+                list($sortField, $sortDirection) = explode(' ', $options[ 'sort' ]);
156 156
 
157 157
                 $query->orderBy($sortField, $sortDirection);
158 158
             }
@@ -167,10 +167,10 @@  discard block
 block discarded – undo
167 167
      */
168 168
     protected function withRelation(Builder $query, array $options)
169 169
     {
170
-        if (!empty($options['fetchPosts'])) {
170
+        if (!empty($options[ 'fetchPosts' ])) {
171 171
             $query->with(
172 172
                 [
173
-                    'posts' => static function (HasMany $query) use ($options) {
173
+                    'posts' => static function(HasMany $query) use ($options) {
174 174
                         $query->isPublished();
175 175
 
176 176
                         self::handleExceptions($query->getQuery(), $options);
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
 
182 182
         $query->withCount(
183 183
             [
184
-                'posts' => static function ($query) use ($options) {
184
+                'posts' => static function($query) use ($options) {
185 185
                     $query->isPublished();
186 186
 
187 187
                     self::handleExceptions($query, $options);
@@ -204,16 +204,16 @@  discard block
 block discarded – undo
204 204
      */
205 205
     protected static function handleExceptions(Builder $query, array $options)
206 206
     {
207
-        if (!empty($options['includeCategories'])) {
208
-            PostListFiltersTrait::handleInclusionsByCategory($query, $options['includeCategories']);
207
+        if (!empty($options[ 'includeCategories' ])) {
208
+            PostListFiltersTrait::handleInclusionsByCategory($query, $options[ 'includeCategories' ]);
209 209
         }
210 210
 
211
-        if (!empty($options['exceptPosts'])) {
212
-            PostListFiltersTrait::handleExceptionsByPost($query, $options['exceptPosts']);
211
+        if (!empty($options[ 'exceptPosts' ])) {
212
+            PostListFiltersTrait::handleExceptionsByPost($query, $options[ 'exceptPosts' ]);
213 213
         }
214 214
 
215
-        if (!empty($options['exceptCategories'])) {
216
-            PostListFiltersTrait::handleExceptionsByCategory($query, $options['exceptCategories']);
215
+        if (!empty($options[ 'exceptCategories' ])) {
216
+            PostListFiltersTrait::handleExceptionsByCategory($query, $options[ 'exceptCategories' ]);
217 217
         }
218 218
     }
219 219
 }
Please login to merge, or discard this patch.
classes/PostListFiltersTrait.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -108,16 +108,16 @@  discard block
 block discarded – undo
108 108
     private static function separateParameters(array $parameters): array
109 109
     {
110 110
         $slugs = $parameters;
111
-        $ids = [];
111
+        $ids = [ ];
112 112
 
113 113
         foreach ($slugs as $index => $potentialId) {
114 114
             if (is_numeric($potentialId)) {
115
-                $ids[] = $potentialId;
116
-                unset($slugs[$index]);
115
+                $ids[ ] = $potentialId;
116
+                unset($slugs[ $index ]);
117 117
             }
118 118
         }
119 119
 
120
-        return [$ids, $slugs];
120
+        return [ $ids, $slugs ];
121 121
     }
122 122
 
123 123
     /**
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
         if (!empty($exceptCategories)) {
130 130
             list($ids, $slugs) = self::separateParameters($exceptCategories);
131 131
 
132
-            $query->whereDoesntHave('categories', static function (Builder $innerQuery) use ($ids, $slugs) {
132
+            $query->whereDoesntHave('categories', static function(Builder $innerQuery) use ($ids, $slugs) {
133 133
                 if (!empty($ids)) {
134 134
                     $innerQuery->whereIn('id', $ids);
135 135
                 }
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
         if (!empty($includeCategories)) {
151 151
             list($ids, $slugs) = self::separateParameters($includeCategories);
152 152
 
153
-            $query->whereHas('categories', static function (Builder $innerQuery) use ($ids, $slugs) {
153
+            $query->whereHas('categories', static function(Builder $innerQuery) use ($ids, $slugs) {
154 154
                 if (!empty($ids)) {
155 155
                     $innerQuery->whereIn('id', $ids);
156 156
                 }
Please login to merge, or discard this patch.
updates/add_series_status_column.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
     public function up()
20 20
     {
21 21
         if (Schema::hasTable(Series::TABLE_NAME)) {
22
-            Schema::table(Series::TABLE_NAME, static function ($table) {
22
+            Schema::table(Series::TABLE_NAME, static function($table) {
23 23
                 $table->string('status')->default(Series::STATUS_ACTIVE);
24 24
             });
25 25
         }
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
     public function down()
32 32
     {
33 33
         if (Schema::hasTable(Series::TABLE_NAME)) {
34
-            Schema::table(Series::TABLE_NAME, static function ($table) {
34
+            Schema::table(Series::TABLE_NAME, static function($table) {
35 35
                 $table->dropColumn('status');
36 36
             });
37 37
         }
Please login to merge, or discard this patch.
controllers/Series.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
         $series = SeriesModel::whereId($recordId)->first();
58 58
 
59 59
         if ($series !== null) {
60
-            $this->pageTitle = trans(Plugin::LOCALIZATION_KEY . 'form.series.edit_title', ['series' => $series->title]);
60
+            $this->pageTitle = trans(Plugin::LOCALIZATION_KEY . 'form.series.edit_title', [ 'series' => $series->title ]);
61 61
         } else {
62 62
             $this->pageTitle = trans(Plugin::LOCALIZATION_KEY . 'form.series.series_does_not_exist');
63 63
         }
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
      */
73 73
     public function onBulkDelete()
74 74
     {
75
-        if ($checkedIds = (array)post('checked', [])) {
75
+        if ($checkedIds = (array)post('checked', [ ])) {
76 76
             $delete = SeriesModel::whereIn('id', $checkedIds)->delete();
77 77
         }
78 78
 
Please login to merge, or discard this patch.
classes/ComponentAbstract.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -60,11 +60,11 @@  discard block
 block discarded – undo
60 60
     {
61 61
         // Add a "url" helper attribute for linking to each post and category
62 62
         if (!empty($this->postPage) && $posts && $posts->count()) {
63
-            $posts->each(function ($post) {
63
+            $posts->each(function($post) {
64 64
                 $this->setPostUrl($post);
65 65
 
66 66
                 if (!empty($this->categoryPage) && $post->categories->count()) {
67
-                    $post->categories->each(function ($category) {
67
+                    $post->categories->each(function($category) {
68 68
                         /** @var Category $category */
69 69
                         $category->setUrl(
70 70
                             $this->categoryPage,
@@ -101,8 +101,8 @@  discard block
 block discarded – undo
101 101
         if ($component !== null && ($property = $component->property($name))) {
102 102
             preg_match('/{{ :([^ ]+) }}/', $property, $matches);
103 103
 
104
-            if (isset($matches[1])) {
105
-                $property = $matches[1];
104
+            if (isset($matches[ 1 ])) {
105
+                $property = $matches[ 1 ];
106 106
             }
107 107
         } else {
108 108
             $property = $name;
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
      */
123 123
     public function getProperty(string $property, $default = null)
124 124
     {
125
-        return $this->property($property, $this->defineProperties()[$property]['default'] ?? $default);
125
+        return $this->property($property, $this->defineProperties()[ $property ][ 'default' ] ?? $default);
126 126
     }
127 127
 
128 128
     /**
Please login to merge, or discard this patch.
components/RelatedPosts.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     /**
30 30
      * @var Collection | array
31 31
      */
32
-    public $posts = [];
32
+    public $posts = [ ];
33 33
 
34 34
     /**
35 35
      * Reference to the page name for linking to posts
@@ -132,10 +132,10 @@  discard block
 block discarded – undo
132 132
 
133 133
     private function prepareVars()
134 134
     {
135
-        $this->orderBy = $this->page['orderBy'] = $this->property('orderBy');
135
+        $this->orderBy = $this->page[ 'orderBy' ] = $this->property('orderBy');
136 136
 
137 137
         // Page links
138
-        $this->postPage = $this->page['postPage' ] = $this->property('postPage');
138
+        $this->postPage = $this->page[ 'postPage' ] = $this->property('postPage');
139 139
 
140 140
         // Exceptions
141 141
         $this->populateFilters();
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
 
177 177
         $query = Post::isPublished()
178 178
             ->where('id', '<>', $post->id)
179
-            ->whereHas('tags', function ($tag) use ($tagIds) {
179
+            ->whereHas('tags', function($tag) use ($tagIds) {
180 180
                 $tag->whereIn('id', $tagIds);
181 181
             })
182 182
             ->with('tags');
Please login to merge, or discard this patch.
components/SeriesPosts.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -88,14 +88,14 @@
 block discarded – undo
88 88
      */
89 89
     protected function getPostsQuery()
90 90
     {
91
-        $query = Post::whereHas('series', function ($query) {
91
+        $query = Post::whereHas('series', function($query) {
92 92
             $query->whereTranslatable('slug', $this->series->slug);
93 93
         });
94 94
 
95 95
         $tagIds = $this->series->tags->lists('id');
96 96
 
97 97
         if (!empty($tagIds) && $this->includeTaggedPosts) {
98
-            $query->orWhereHas('tags', function ($tag) use ($tagIds) {
98
+            $query->orWhereHas('tags', function($tag) use ($tagIds) {
99 99
                 $tag->whereIn('id', $tagIds);
100 100
             });
101 101
         }
Please login to merge, or discard this patch.
controllers/PostTypes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
         $postType = PostType::whereId($recordId)->first();
58 58
 
59 59
         if ($postType !== null) {
60
-            $this->pageTitle = trans(Plugin::LOCALIZATION_KEY . 'form.post_types.edit_title', ['post_type' => $postType->name]);
60
+            $this->pageTitle = trans(Plugin::LOCALIZATION_KEY . 'form.post_types.edit_title', [ 'post_type' => $postType->name ]);
61 61
         } else {
62 62
             $this->pageTitle = trans(Plugin::LOCALIZATION_KEY . 'form.post_types.post_type_does_not_exist');
63 63
         }
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
      */
73 73
     public function onBulkDelete()
74 74
     {
75
-        if ($checkedIds = (array)post('checked', [])) {
75
+        if ($checkedIds = (array)post('checked', [ ])) {
76 76
             $delete = PostType::whereIn('id', $checkedIds)->delete();
77 77
         }
78 78
 
Please login to merge, or discard this patch.
components/TagPosts.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
     protected function prepareContextItem()
78 78
     {
79 79
         // load tag
80
-        $this->tag = $this->page['tag'] = Tag::whereTranslatable('slug', $this->property('tag'))->first();
80
+        $this->tag = $this->page[ 'tag' ] = Tag::whereTranslatable('slug', $this->property('tag'))->first();
81 81
 
82 82
         return $this->tag;
83 83
     }
@@ -87,13 +87,13 @@  discard block
 block discarded – undo
87 87
      */
88 88
     protected function getPostsQuery()
89 89
     {
90
-        $query = Post::whereHas('tags', function ($query) {
90
+        $query = Post::whereHas('tags', function($query) {
91 91
             $query->whereTranslatable('slug', $this->tag->slug);
92 92
         });
93 93
 
94 94
         if ($this->includeSeriesPosts) {
95
-            $query->orWhereHas('series', function ($query) {
96
-                $query->whereHas('tags', function ($query) {
95
+            $query->orWhereHas('series', function($query) {
96
+                $query->whereHas('tags', function($query) {
97 97
                     $query->whereTranslatable('slug', $this->tag->slug);
98 98
                 });
99 99
             });
Please login to merge, or discard this patch.