@@ -21,7 +21,7 @@ discard block |
||
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 |
||
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 | /** |
@@ -37,7 +37,7 @@ discard block |
||
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 |
||
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 |
@@ -18,7 +18,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 | - function ($query) use ($options) { |
|
121 | - ModelAbstract::whereTranslatableProperty($query, 'slug', $options['post']); |
|
120 | + function($query) use ($options) { |
|
121 | + ModelAbstract::whereTranslatableProperty($query, 'slug', $options[ 'post' ]); |
|
122 | 122 | } |
123 | 123 | ); |
124 | 124 | } |
@@ -132,8 +132,8 @@ discard block |
||
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 |
||
145 | 145 | */ |
146 | 146 | private function queryOrderBy(Builder $query, array $options) |
147 | 147 | { |
148 | - if (\array_key_exists($options['sort'], static::$sortingOptions)) { |
|
149 | - if ($options['sort'] === 'random') { |
|
148 | + if (\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 |
||
165 | 165 | { |
166 | 166 | $query->withCount( |
167 | 167 | [ |
168 | - 'posts' => function ($query) { |
|
168 | + 'posts' => function($query) { |
|
169 | 169 | $query->isPublished(); |
170 | 170 | } |
171 | 171 | ] |
@@ -74,7 +74,7 @@ discard block |
||
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 |
||
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 |
||
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 | /** |