Completed
Pull Request — master (#23)
by Gino
01:57
created
models/Series.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
      *
38 38
      * @var array
39 39
      */
40
-    public $implement = ['@RainLab.Translate.Behaviors.TranslatableModel'];
40
+    public $implement = [ '@RainLab.Translate.Behaviors.TranslatableModel' ];
41 41
 
42 42
     /**
43 43
      * Translatable properties, indexed property will be available in queries
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
     /**
122 122
      * @var array
123 123
      */
124
-    protected $slugs = ['slug' => 'title'];
124
+    protected $slugs = [ 'slug' => 'title' ];
125 125
 
126 126
     /**
127 127
      * @return mixed
Please login to merge, or discard this patch.
components/ComponentAbstract.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
                 );
75 75
 
76 76
                 if (!empty($this->categoryPage) && $post->categories->count()) {
77
-                    $post->categories->each(function ($category) use ($blogCategoriesComponent) {
77
+                    $post->categories->each(function($category) use ($blogCategoriesComponent) {
78 78
                         /** @var Category $category */
79 79
                         $category->setUrl(
80 80
                             $this->categoryPage,
@@ -106,8 +106,8 @@  discard block
 block discarded – undo
106 106
         if ($component && ($property = $component->property($name))) {
107 107
             preg_match('/{{ :([^ ]+) }}/', $property, $matches);
108 108
 
109
-            if (isset($matches[1])) {
110
-                $property = $matches[1];
109
+            if (isset($matches[ 1 ])) {
110
+                $property = $matches[ 1 ];
111 111
             }
112 112
         }
113 113
 
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
      */
126 126
     public function getProperty(string $property, $default = null)
127 127
     {
128
-        return $this->property($property, $this->defineProperties()[$property]['default'] ?? $default);
128
+        return $this->property($property, $this->defineProperties()[ $property ][ 'default' ] ?? $default);
129 129
     }
130 130
 
131 131
     /**
Please login to merge, or discard this patch.
models/ModelAbstract.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
     /**
19 19
      * @var array
20 20
      */
21
-    public static $sortingOptions = [];
21
+    public static $sortingOptions = [ ];
22 22
 
23 23
     /**
24 24
      * Sets the URL attribute with a URL to this object
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      *
52 52
      * @return mixed
53 53
      */
54
-    public function scopeListFrontend(Builder $query, array $options = [])
54
+    public function scopeListFrontend(Builder $query, array $options = [ ])
55 55
     {
56 56
         $this->withRelation($query);
57 57
 
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
      */
102 102
     private function queryDisplayEmpty(Builder $query, array $options)
103 103
     {
104
-        if (empty($options['displayEmpty'])) {
104
+        if (empty($options[ 'displayEmpty' ])) {
105 105
             $query->having('posts_count', '>', 0);
106 106
         }
107 107
     }
@@ -114,11 +114,11 @@  discard block
 block discarded – undo
114 114
      */
115 115
     private function queryPostSlug(Builder $query, array $options)
116 116
     {
117
-        if (!empty($options['post'])) {
117
+        if (!empty($options[ 'post' ])) {
118 118
             $query->whereHas(
119 119
                 'posts',
120
-                static function ($query) use ($options) {
121
-                    ModelAbstract::whereTranslatableProperty($query, 'slug', $options['post']);
120
+                static function($query) use ($options) {
121
+                    ModelAbstract::whereTranslatableProperty($query, 'slug', $options[ 'post' ]);
122 122
                 }
123 123
             );
124 124
         }
@@ -132,8 +132,8 @@  discard block
 block discarded – undo
132 132
      */
133 133
     private function queryLimit(Builder $query, array $options)
134 134
     {
135
-        if (!empty($options['limit'])) {
136
-            $query->take($options['limit']);
135
+        if (!empty($options[ 'limit' ])) {
136
+            $query->take($options[ 'limit' ]);
137 137
         }
138 138
     }
139 139
 
@@ -145,11 +145,11 @@  discard block
 block discarded – undo
145 145
      */
146 146
     private function queryOrderBy(Builder $query, array $options)
147 147
     {
148
-        if (!empty($options['sort']) && \array_key_exists($options['sort'], static::$sortingOptions)) {
149
-            if ($options['sort'] === 'random') {
148
+        if (!empty($options[ 'sort' ]) && \array_key_exists($options[ 'sort' ], static::$sortingOptions)) {
149
+            if ($options[ 'sort' ] === 'random') {
150 150
                 $query->inRandomOrder();
151 151
             } else {
152
-                list($sortField, $sortDirection) = explode(' ', $options['sort']);
152
+                list($sortField, $sortDirection) = explode(' ', $options[ 'sort' ]);
153 153
 
154 154
                 $query->orderBy($sortField, $sortDirection);
155 155
             }
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
     {
166 166
         $query->withCount(
167 167
             [
168
-                'posts' => static function ($query) {
168
+                'posts' => static function($query) {
169 169
                     $query->isPublished();
170 170
                 }
171 171
             ]
Please login to merge, or discard this patch.
components/TagList.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     /**
22 22
      * @var Collection | array
23 23
      */
24
-    public $tags = [];
24
+    public $tags = [ ];
25 25
 
26 26
     /**
27 27
      * Reference to the page name for linking to tag page
@@ -249,15 +249,15 @@  discard block
 block discarded – undo
249 249
      */
250 250
     public function onRun()
251 251
     {
252
-        $this->tagPage = (string) $this->getProperty('tagPage');
253
-        $this->tagsPage = (string) $this->getProperty('tagsPage');
252
+        $this->tagPage = (string)$this->getProperty('tagPage');
253
+        $this->tagsPage = (string)$this->getProperty('tagsPage');
254 254
 
255 255
         $this->orderBy = $this->getProperty('orderBy');
256 256
         $this->postSlug = $this->getProperty('postSlug');
257
-        $this->displayEmpty = (bool) $this->getProperty('displayEmpty');
258
-        $this->limit =  (int) $this->getProperty('limit');
259
-        $this->exposeTotalCount =  (bool) $this->getProperty('exposeTotalCount');
260
-        $this->enableTagFilter = (string) $this->getProperty('enableTagFilter');
257
+        $this->displayEmpty = (bool)$this->getProperty('displayEmpty');
258
+        $this->limit = (int)$this->getProperty('limit');
259
+        $this->exposeTotalCount = (bool)$this->getProperty('exposeTotalCount');
260
+        $this->enableTagFilter = (string)$this->getProperty('enableTagFilter');
261 261
 
262 262
         $this->tags = $this->listTags();
263 263
     }
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
 
291 291
         $this->tagsPageUrl = $this->controller->pageUrl($this->tagsPage);
292 292
 
293
-        $this->setUrls($tags, $this->tagPage, $this->controller, ['tag' => $this->urlProperty($tagComponent, 'tag')]);
293
+        $this->setUrls($tags, $this->tagPage, $this->controller, [ 'tag' => $this->urlProperty($tagComponent, 'tag') ]);
294 294
     }
295 295
 
296 296
     /**
Please login to merge, or discard this patch.