Completed
Pull Request — master (#17)
by Gino
01:35
created
components/PostListAbstract.php 1 patch
Spacing   +5 added lines, -5 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 $posts = [];
24
+    public $posts = [ ];
25 25
 
26 26
     /**
27 27
      * @var integer             The current page
@@ -149,13 +149,13 @@  discard block
 block discarded – undo
149 149
         // Paginator settings
150 150
         $this->currentPage = (int)$this->property('page', 1) ?: (int)post('page');
151 151
         $this->resultsPerPage = (int)$this->property('resultsPerPage')
152
-            ?: $this->defineProperties()['resultsPerPage']['default'];
152
+            ?: $this->defineProperties()[ 'resultsPerPage' ][ 'default' ];
153 153
 
154
-        $this->orderBy = $this->page['orderBy'] = $this->property('orderBy');
154
+        $this->orderBy = $this->page[ 'orderBy' ] = $this->property('orderBy');
155 155
 
156 156
         // Page links
157
-        $this->postPage = $this->page['postPage' ] = $this->property('postPage');
158
-        $this->categoryPage = $this->page['categoryPage'] = $this->property('categoryPage');
157
+        $this->postPage = $this->page[ 'postPage' ] = $this->property('postPage');
158
+        $this->categoryPage = $this->page[ 'categoryPage' ] = $this->property('categoryPage');
159 159
     }
160 160
 
161 161
     /**
Please login to merge, or discard this patch.
components/ComponentAbstract.php 1 patch
Spacing   +3 added lines, -3 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,
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
      */
114 114
     public function getProperty(string $property, $default = null)
115 115
     {
116
-        return $this->property($property, $this->defineProperties()[$property]['default'] ?? $default);
116
+        return $this->property($property, $this->defineProperties()[ $property ][ 'default' ] ?? $default);
117 117
     }
118 118
 
119 119
     /**
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
             $component = $page->getComponent($componentName);
132 132
         }
133 133
 
134
-        if (!empty($component) && \is_callable([$this->controller, 'setComponentPropertiesFromParams'])) {
134
+        if (!empty($component) && \is_callable([ $this->controller, 'setComponentPropertiesFromParams' ])) {
135 135
             $this->controller->setComponentPropertiesFromParams($component);
136 136
         }
137 137
 
Please login to merge, or discard this patch.
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.
models/ModelAbstract.php 1 patch
Spacing   +14 added lines, -14 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,10 +101,10 @@  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->withCount(
106 106
                 [
107
-                    'posts' => function ($query) {
107
+                    'posts' => function($query) {
108 108
                         $query->isPublished();
109 109
                     }
110 110
                 ]
@@ -120,11 +120,11 @@  discard block
 block discarded – undo
120 120
      */
121 121
     private function queryPostSlug(Builder $query, array $options)
122 122
     {
123
-        if (!empty($options['post'])) {
123
+        if (!empty($options[ 'post' ])) {
124 124
             $query->whereHas(
125 125
                 'posts',
126
-                function ($query) use ($options) {
127
-                    ModelAbstract::whereTranslatableProperty($query, 'slug', $options['post']);
126
+                function($query) use ($options) {
127
+                    ModelAbstract::whereTranslatableProperty($query, 'slug', $options[ 'post' ]);
128 128
                 }
129 129
             );
130 130
         }
@@ -138,8 +138,8 @@  discard block
 block discarded – undo
138 138
      */
139 139
     private function queryLimit(Builder $query, array $options)
140 140
     {
141
-        if (!empty($options['limit'])) {
142
-            $query->take($options['limit']);
141
+        if (!empty($options[ 'limit' ])) {
142
+            $query->take($options[ 'limit' ]);
143 143
         }
144 144
     }
145 145
 
@@ -151,16 +151,16 @@  discard block
 block discarded – undo
151 151
      */
152 152
     private function queryOrderBy(Builder $query, array $options)
153 153
     {
154
-        if (\array_key_exists($options['sort'], static::$sortingOptions)) {
155
-            if ($options['sort'] === 'random') {
154
+        if (\array_key_exists($options[ 'sort' ], static::$sortingOptions)) {
155
+            if ($options[ 'sort' ] === 'random') {
156 156
                 $query->inRandomOrder();
157 157
             } else {
158
-                list($sortField, $sortDirection) = explode(' ', $options['sort']);
158
+                list($sortField, $sortDirection) = explode(' ', $options[ 'sort' ]);
159 159
 
160 160
                 if ($sortField === 'posts_count') {
161 161
                     $query->withCount(
162 162
                         [
163
-                            'posts' => function ($query) {
163
+                            'posts' => function($query) {
164 164
                                 $query->isPublished();
165 165
                             }
166 166
                         ]
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
     {
182 182
         $query->with(
183 183
             [
184
-                'posts' => function ($query) {
184
+                'posts' => function($query) {
185 185
                     $query->isPublished();
186 186
                 }
187 187
             ]
Please login to merge, or discard this patch.