Passed
Push — master ( ae1954...aab291 )
by Paul
08:17 queued 04:15
created
plugin/Modules/Html/Partials/SiteReviewsForm.php 1 patch
Spacing   +70 added lines, -70 removed lines patch added patch discarded remove patch
@@ -40,20 +40,20 @@  discard block
 block discarded – undo
40 40
     /**
41 41
      * @return void|string
42 42
      */
43
-    public function build(array $args = [])
43
+    public function build( array $args = [] )
44 44
     {
45 45
         $this->args = $args;
46
-        if (!is_user_logged_in() && glsr(OptionManager::class)->getBool('settings.general.require.login')) {
46
+        if( !is_user_logged_in() && glsr( OptionManager::class )->getBool( 'settings.general.require.login' ) ) {
47 47
             return $this->buildLoginRegister();
48 48
         }
49
-        $this->errors = glsr()->sessionGet($args['id'].'errors', []);
50
-        $this->message = glsr()->sessionGet($args['id'].'message', '');
51
-        $this->required = glsr(OptionManager::class)->get('settings.submissions.required', []);
52
-        $this->values = glsr()->sessionGet($args['id'].'values', []);
53
-        $fields = array_reduce($this->getFields(), function ($carry, $field) {
49
+        $this->errors = glsr()->sessionGet( $args['id'].'errors', [] );
50
+        $this->message = glsr()->sessionGet( $args['id'].'message', '' );
51
+        $this->required = glsr( OptionManager::class )->get( 'settings.submissions.required', [] );
52
+        $this->values = glsr()->sessionGet( $args['id'].'values', [] );
53
+        $fields = array_reduce( $this->getFields(), function( $carry, $field ) {
54 54
             return $carry.$field;
55 55
         });
56
-        return glsr(Template::class)->build('templates/reviews-form', [
56
+        return glsr( Template::class )->build( 'templates/reviews-form', [
57 57
             'args' => $args,
58 58
             'context' => [
59 59
                 'class' => $this->getClass(),
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
                 'response' => $this->buildResponse(),
63 63
                 'submit_button' => $this->buildSubmitButton().$this->buildRecaptcha(),
64 64
             ],
65
-        ]);
65
+        ] );
66 66
     }
67 67
 
68 68
     /**
@@ -70,11 +70,11 @@  discard block
 block discarded – undo
70 70
      */
71 71
     protected function buildLoginRegister()
72 72
     {
73
-        return glsr(Template::class)->build('templates/login-register', [
73
+        return glsr( Template::class )->build( 'templates/login-register', [
74 74
             'context' => [
75
-                'text' => trim($this->getLoginText().' '.$this->getRegisterText()),
75
+                'text' => trim( $this->getLoginText().' '.$this->getRegisterText() ),
76 76
             ],
77
-        ]);
77
+        ] );
78 78
     }
79 79
 
80 80
     /**
@@ -82,15 +82,15 @@  discard block
 block discarded – undo
82 82
      */
83 83
     protected function buildRecaptcha()
84 84
     {
85
-        if (!glsr(OptionManager::class)->isRecaptchaEnabled()) {
85
+        if( !glsr( OptionManager::class )->isRecaptchaEnabled() ) {
86 86
             return;
87 87
         }
88
-        return glsr(Builder::class)->div([
88
+        return glsr( Builder::class )->div( [
89 89
             'class' => 'glsr-recaptcha-holder',
90
-            'data-badge' => glsr(OptionManager::class)->get('settings.submissions.recaptcha.position'),
91
-            'data-sitekey' => sanitize_text_field(glsr(OptionManager::class)->get('settings.submissions.recaptcha.key')),
90
+            'data-badge' => glsr( OptionManager::class )->get( 'settings.submissions.recaptcha.position' ),
91
+            'data-sitekey' => sanitize_text_field( glsr( OptionManager::class )->get( 'settings.submissions.recaptcha.key' ) ),
92 92
             'data-size' => 'invisible',
93
-        ]);
93
+        ] );
94 94
     }
95 95
 
96 96
     /**
@@ -99,15 +99,15 @@  discard block
 block discarded – undo
99 99
     protected function buildResponse()
100 100
     {
101 101
         $classes = !empty($this->errors)
102
-            ? glsr(StyleValidationDefaults::class)->defaults()['message_error_class']
102
+            ? glsr( StyleValidationDefaults::class )->defaults()['message_error_class']
103 103
             : '';
104
-        return glsr(Template::class)->build('templates/form/response', [
104
+        return glsr( Template::class )->build( 'templates/form/response', [
105 105
             'context' => [
106 106
                 'class' => $classes,
107
-                'message' => wpautop($this->message),
107
+                'message' => wpautop( $this->message ),
108 108
             ],
109 109
             'has_errors' => !empty($this->errors),
110
-        ]);
110
+        ] );
111 111
     }
112 112
 
113 113
     /**
@@ -115,11 +115,11 @@  discard block
 block discarded – undo
115 115
      */
116 116
     protected function buildSubmitButton()
117 117
     {
118
-        return glsr(Template::class)->build('templates/form/submit-button', [
118
+        return glsr( Template::class )->build( 'templates/form/submit-button', [
119 119
             'context' => [
120
-                'text' => __('Submit your review', 'site-reviews'),
120
+                'text' => __( 'Submit your review', 'site-reviews' ),
121 121
             ],
122
-        ]);
122
+        ] );
123 123
     }
124 124
 
125 125
     /**
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
      */
128 128
     protected function getClass()
129 129
     {
130
-        return trim('glsr-form glsr-'.glsr(Style::class)->get().' '.$this->args['class']);
130
+        return trim( 'glsr-form glsr-'.glsr( Style::class )->get().' '.$this->args['class'] );
131 131
     }
132 132
 
133 133
     /**
@@ -137,18 +137,18 @@  discard block
 block discarded – undo
137 137
     {
138 138
         $hiddenFields = $this->getHiddenFields();
139 139
         $hiddenFields[] = $this->getHoneypotField();
140
-        $fields = $this->normalizeFields(glsr(Form::class)->getFields('submission-form'));
141
-        $paths = array_map(function ($obj) {
140
+        $fields = $this->normalizeFields( glsr( Form::class )->getFields( 'submission-form' ) );
141
+        $paths = array_map( function( $obj ) {
142 142
             return $obj->field['path'];
143
-        }, $hiddenFields);
144
-        foreach ($fields as $field) {
145
-            $index = array_search($field->field['path'], $paths);
146
-            if (false === $index) {
143
+        }, $hiddenFields );
144
+        foreach( $fields as $field ) {
145
+            $index = array_search( $field->field['path'], $paths );
146
+            if( false === $index ) {
147 147
                 continue;
148 148
             }
149 149
             unset($hiddenFields[$index]);
150 150
         }
151
-        return array_merge($hiddenFields, $fields);
151
+        return array_merge( $hiddenFields, $fields );
152 152
     }
153 153
 
154 154
     /**
@@ -156,11 +156,11 @@  discard block
 block discarded – undo
156 156
      */
157 157
     protected function getLoginText()
158 158
     {
159
-        $loginLink = glsr(Builder::class)->a([
160
-            'href' => wp_login_url(strval(get_permalink())),
161
-            'text' => __('logged in', 'site-reviews'),
162
-        ]);
163
-        return sprintf(__('You must be %s to submit a review.', 'site-reviews'), $loginLink);
159
+        $loginLink = glsr( Builder::class )->a( [
160
+            'href' => wp_login_url( strval( get_permalink() ) ),
161
+            'text' => __( 'logged in', 'site-reviews' ),
162
+        ] );
163
+        return sprintf( __( 'You must be %s to submit a review.', 'site-reviews' ), $loginLink );
164 164
     }
165 165
 
166 166
     /**
@@ -168,14 +168,14 @@  discard block
 block discarded – undo
168 168
      */
169 169
     protected function getRegisterText()
170 170
     {
171
-        if (!get_option('users_can_register') || !glsr(OptionManager::class)->getBool('settings.general.require.login')) {
171
+        if( !get_option( 'users_can_register' ) || !glsr( OptionManager::class )->getBool( 'settings.general.require.login' ) ) {
172 172
             return;
173 173
         }
174
-        $registerLink = glsr(Builder::class)->a([
174
+        $registerLink = glsr( Builder::class )->a( [
175 175
             'href' => wp_registration_url(),
176
-            'text' => __('register', 'site-reviews'),
177
-        ]);
178
-        return sprintf(__('You may also %s for an account.', 'site-reviews'), $registerLink);
176
+            'text' => __( 'register', 'site-reviews' ),
177
+        ] );
178
+        return sprintf( __( 'You may also %s for an account.', 'site-reviews' ), $registerLink );
179 179
     }
180 180
 
181 181
     /**
@@ -190,13 +190,13 @@  discard block
 block discarded – undo
190 190
             'name' => '_counter',
191 191
         ], [
192 192
             'name' => '_nonce',
193
-            'value' => wp_create_nonce('submit-review'),
193
+            'value' => wp_create_nonce( 'submit-review' ),
194 194
         ], [
195 195
             'name' => '_post_id',
196 196
             'value' => get_the_ID(),
197 197
         ], [
198 198
             'name' => '_referer',
199
-            'value' => wp_unslash(filter_input(INPUT_SERVER, 'REQUEST_URI')),
199
+            'value' => wp_unslash( filter_input( INPUT_SERVER, 'REQUEST_URI' ) ),
200 200
         ], [
201 201
             'name' => 'assign_to',
202 202
             'value' => $this->args['assign_to'],
@@ -210,9 +210,9 @@  discard block
 block discarded – undo
210 210
             'name' => 'form_id',
211 211
             'value' => $this->args['id'],
212 212
         ]];
213
-        return array_map(function ($field) {
214
-            return new Field(wp_parse_args($field, ['type' => 'hidden']));
215
-        }, $fields);
213
+        return array_map( function( $field ) {
214
+            return new Field( wp_parse_args( $field, ['type' => 'hidden'] ) );
215
+        }, $fields );
216 216
     }
217 217
 
218 218
     /**
@@ -220,40 +220,40 @@  discard block
 block discarded – undo
220 220
      */
221 221
     protected function getHoneypotField()
222 222
     {
223
-        return new Field([
223
+        return new Field( [
224 224
             'name' => 'gotcha',
225 225
             'type' => 'honeypot',
226
-        ]);
226
+        ] );
227 227
     }
228 228
 
229 229
     /**
230 230
      * @return void
231 231
      */
232
-    protected function normalizeFieldId(Field &$field)
232
+    protected function normalizeFieldId( Field &$field )
233 233
     {
234
-        if (empty($this->args['id']) || empty($field->field['id'])) {
234
+        if( empty($this->args['id']) || empty($field->field['id']) ) {
235 235
             return;
236 236
         }
237
-        $field->field['id'].= '-'.$this->args['id'];
237
+        $field->field['id'] .= '-'.$this->args['id'];
238 238
     }
239 239
 
240 240
     /**
241 241
      * @return void
242 242
      */
243
-    protected function normalizeFieldClass(Field &$field)
243
+    protected function normalizeFieldClass( Field &$field )
244 244
     {
245
-        if (!isset($field->field['class'])) {
245
+        if( !isset($field->field['class']) ) {
246 246
             $field->field['class'] = '';
247 247
         }
248
-        $field->field['class'] = trim($field->field['class'].' glsr-field-control');
248
+        $field->field['class'] = trim( $field->field['class'].' glsr-field-control' );
249 249
     }
250 250
 
251 251
     /**
252 252
      * @return void
253 253
      */
254
-    protected function normalizeFieldErrors(Field &$field)
254
+    protected function normalizeFieldErrors( Field &$field )
255 255
     {
256
-        if (!array_key_exists($field->field['path'], $this->errors)) {
256
+        if( !array_key_exists( $field->field['path'], $this->errors ) ) {
257 257
             return;
258 258
         }
259 259
         $field->field['errors'] = $this->errors[$field->field['path']];
@@ -262,9 +262,9 @@  discard block
 block discarded – undo
262 262
     /**
263 263
      * @return void
264 264
      */
265
-    protected function normalizeFieldRequired(Field &$field)
265
+    protected function normalizeFieldRequired( Field &$field )
266 266
     {
267
-        if (!in_array($field->field['path'], $this->required)) {
267
+        if( !in_array( $field->field['path'], $this->required ) ) {
268 268
             return;
269 269
         }
270 270
         $field->field['required'] = true;
@@ -273,19 +273,19 @@  discard block
 block discarded – undo
273 273
     /**
274 274
      * @return array
275 275
      */
276
-    protected function normalizeFields($fields)
276
+    protected function normalizeFields( $fields )
277 277
     {
278 278
         $normalizedFields = [];
279
-        foreach ($fields as $field) {
280
-            if (in_array($field->field['path'], $this->args['hide'])) {
279
+        foreach( $fields as $field ) {
280
+            if( in_array( $field->field['path'], $this->args['hide'] ) ) {
281 281
                 continue;
282 282
             }
283 283
             $field->field['is_public'] = true;
284
-            $this->normalizeFieldClass($field);
285
-            $this->normalizeFieldErrors($field);
286
-            $this->normalizeFieldRequired($field);
287
-            $this->normalizeFieldValue($field);
288
-            $this->normalizeFieldId($field);
284
+            $this->normalizeFieldClass( $field );
285
+            $this->normalizeFieldErrors( $field );
286
+            $this->normalizeFieldRequired( $field );
287
+            $this->normalizeFieldValue( $field );
288
+            $this->normalizeFieldId( $field );
289 289
             $normalizedFields[] = $field;
290 290
         }
291 291
         return $normalizedFields;
@@ -294,12 +294,12 @@  discard block
 block discarded – undo
294 294
     /**
295 295
      * @return void
296 296
      */
297
-    protected function normalizeFieldValue(Field &$field)
297
+    protected function normalizeFieldValue( Field &$field )
298 298
     {
299
-        if (!array_key_exists($field->field['path'], $this->values)) {
299
+        if( !array_key_exists( $field->field['path'], $this->values ) ) {
300 300
             return;
301 301
         }
302
-        if (in_array($field->field['type'], ['radio', 'checkbox'])) {
302
+        if( in_array( $field->field['type'], ['radio', 'checkbox'] ) ) {
303 303
             $field->field['checked'] = $field->field['value'] == $this->values[$field->field['path']];
304 304
         } else {
305 305
             $field->field['value'] = $this->values[$field->field['path']];
Please login to merge, or discard this patch.
plugin/Provider.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -13,14 +13,14 @@
 block discarded – undo
13 13
     /**
14 14
      * @return void
15 15
      */
16
-    public function register(Application $app)
16
+    public function register( Application $app )
17 17
     {
18
-        $app->bind(Application::class, $app);
19
-        $app->singleton(Actions::class, Actions::class);
20
-        $app->singleton(Filters::class, Filters::class);
21
-        $app->singleton(OptionManager::class, OptionManager::class);
22
-        $app->singleton(Translator::class, Translator::class);
23
-        $app->singleton(Translation::class, Translation::class);
24
-        $app->singleton(MainController::class, MainController::class); // this goes last
18
+        $app->bind( Application::class, $app );
19
+        $app->singleton( Actions::class, Actions::class );
20
+        $app->singleton( Filters::class, Filters::class );
21
+        $app->singleton( OptionManager::class, OptionManager::class );
22
+        $app->singleton( Translator::class, Translator::class );
23
+        $app->singleton( Translation::class, Translation::class );
24
+        $app->singleton( MainController::class, MainController::class ); // this goes last
25 25
     }
26 26
 }
Please login to merge, or discard this patch.
plugin/Handlers/ChangeStatus.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -11,21 +11,21 @@  discard block
 block discarded – undo
11 11
     /**
12 12
      * @return array
13 13
      */
14
-    public function handle(Command $command)
14
+    public function handle( Command $command )
15 15
     {
16
-        $postId = wp_update_post([
16
+        $postId = wp_update_post( [
17 17
             'ID' => $command->id,
18 18
             'post_status' => $command->status,
19
-        ]);
20
-        if (is_wp_error($postId)) {
21
-            glsr_log()->error($postId->get_error_message());
19
+        ] );
20
+        if( is_wp_error( $postId ) ) {
21
+            glsr_log()->error( $postId->get_error_message() );
22 22
             return [];
23 23
         }
24 24
         return [
25 25
             'class' => 'status-'.$command->status,
26 26
             'counts' => $this->getStatusLinks(),
27
-            'link' => $this->getPostLink($postId).$this->getPostState($postId),
28
-            'pending' => wp_count_posts(Application::POST_TYPE, 'readable')->pending,
27
+            'link' => $this->getPostLink( $postId ).$this->getPostState( $postId ),
28
+            'pending' => wp_count_posts( Application::POST_TYPE, 'readable' )->pending,
29 29
         ];
30 30
     }
31 31
 
@@ -33,24 +33,24 @@  discard block
 block discarded – undo
33 33
      * @param int $postId
34 34
      * @return string
35 35
      */
36
-    protected function getPostLink($postId)
36
+    protected function getPostLink( $postId )
37 37
     {
38
-        $title = _draft_or_post_title($postId);
39
-        return glsr(Builder::class)->a($title, [
40
-            'aria-label' => '“'.esc_attr($title).'” ('.__('Edit', 'site-reviews').')',
38
+        $title = _draft_or_post_title( $postId );
39
+        return glsr( Builder::class )->a( $title, [
40
+            'aria-label' => '“'.esc_attr( $title ).'” ('.__( 'Edit', 'site-reviews' ).')',
41 41
             'class' => 'row-title',
42
-            'href' => get_edit_post_link($postId),
43
-        ]);
42
+            'href' => get_edit_post_link( $postId ),
43
+        ] );
44 44
     }
45 45
 
46 46
     /**
47 47
      * @param int $postId
48 48
      * @return string
49 49
      */
50
-    protected function getPostState($postId)
50
+    protected function getPostState( $postId )
51 51
     {
52 52
         ob_start();
53
-        _post_states(get_post($postId));
53
+        _post_states( get_post( $postId ) );
54 54
         return ob_get_clean();
55 55
     }
56 56
 
@@ -62,16 +62,16 @@  discard block
 block discarded – undo
62 62
         global $avail_post_stati;
63 63
         require_once ABSPATH.'wp-admin/includes/class-wp-posts-list-table.php';
64 64
         $hookName = 'edit-'.Application::POST_TYPE;
65
-        set_current_screen($hookName);
66
-        $avail_post_stati = get_available_post_statuses(Application::POST_TYPE);
67
-        $table = new \WP_Posts_List_Table(['screen' => $hookName]);
68
-        $views = apply_filters('views_'.$hookName, $table->get_views()); // uses compat get_views()
69
-        if (empty($views)) {
65
+        set_current_screen( $hookName );
66
+        $avail_post_stati = get_available_post_statuses( Application::POST_TYPE );
67
+        $table = new \WP_Posts_List_Table( ['screen' => $hookName] );
68
+        $views = apply_filters( 'views_'.$hookName, $table->get_views() ); // uses compat get_views()
69
+        if( empty($views) ) {
70 70
             return;
71 71
         }
72
-        foreach ($views as $class => $view) {
72
+        foreach( $views as $class => $view ) {
73 73
             $views[$class] = "\t<li class='$class'>$view";
74 74
         }
75
-        return implode(' |</li>', $views).'</li>';
75
+        return implode( ' |</li>', $views ).'</li>';
76 76
     }
77 77
 }
Please login to merge, or discard this patch.
plugin/Handlers/CreateReview.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -11,35 +11,35 @@
 block discarded – undo
11 11
     /**
12 12
      * @return void|string
13 13
      */
14
-    public function handle(Command $command)
14
+    public function handle( Command $command )
15 15
     {
16
-        $review = glsr(ReviewManager::class)->create($command);
17
-        if (!$review) {
18
-            glsr()->sessionSet($command->form_id.'errors', []);
19
-            glsr()->sessionSet($command->form_id.'message', __('Your review could not be submitted and the error has been logged. Please notify the site admin.', 'site-reviews'));
16
+        $review = glsr( ReviewManager::class )->create( $command );
17
+        if( !$review ) {
18
+            glsr()->sessionSet( $command->form_id.'errors', [] );
19
+            glsr()->sessionSet( $command->form_id.'message', __( 'Your review could not be submitted and the error has been logged. Please notify the site admin.', 'site-reviews' ) );
20 20
             return;
21 21
         }
22
-        glsr()->sessionSet($command->form_id.'message', __('Your review has been submitted!', 'site-reviews'));
23
-        glsr(Notification::class)->send($review);
24
-        if ($command->ajax_request) {
22
+        glsr()->sessionSet( $command->form_id.'message', __( 'Your review has been submitted!', 'site-reviews' ) );
23
+        glsr( Notification::class )->send( $review );
24
+        if( $command->ajax_request ) {
25 25
             return;
26 26
         }
27
-        wp_safe_redirect($this->getReferer($command));
27
+        wp_safe_redirect( $this->getReferer( $command ) );
28 28
         exit;
29 29
     }
30 30
 
31 31
     /**
32 32
      * @return string
33 33
      */
34
-    protected function getReferer(Command $command)
34
+    protected function getReferer( Command $command )
35 35
     {
36
-        $referer = trim(strval(get_post_meta($command->post_id, 'redirect_to', true)));
37
-        $referer = apply_filters('site-reviews/review/redirect', $referer, $command);
38
-        if (empty($referer)) {
36
+        $referer = trim( strval( get_post_meta( $command->post_id, 'redirect_to', true ) ) );
37
+        $referer = apply_filters( 'site-reviews/review/redirect', $referer, $command );
38
+        if( empty($referer) ) {
39 39
             $referer = $command->referer;
40 40
         }
41
-        if (empty($referer)) {
42
-            glsr_log()->warning('The form referer ($_SERVER[REQUEST_URI]) was empty.')->debug($command);
41
+        if( empty($referer) ) {
42
+            glsr_log()->warning( 'The form referer ($_SERVER[REQUEST_URI]) was empty.' )->debug( $command );
43 43
             $referer = home_url();
44 44
         }
45 45
         return $referer;
Please login to merge, or discard this patch.
deprecated.php 1 patch
Spacing   +57 added lines, -57 removed lines patch added patch discarded remove patch
@@ -1,134 +1,134 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-defined('WPINC') || die;
3
+defined( 'WPINC' ) || die;
4 4
 
5 5
 // Unprotected review meta has been deprecated
6
-add_filter('get_post_metadata', function ($check, $postId, $metaKey, $single) {
7
-    $metaKeys = array_keys(glsr('Defaults\CreateReviewDefaults')->defaults());
8
-    if (!in_array($metaKey, $metaKeys) || glsr()->post_type != get_post_type($postId)) {
6
+add_filter( 'get_post_metadata', function( $check, $postId, $metaKey, $single ) {
7
+    $metaKeys = array_keys( glsr( 'Defaults\CreateReviewDefaults' )->defaults() );
8
+    if( !in_array( $metaKey, $metaKeys ) || glsr()->post_type != get_post_type( $postId ) ) {
9 9
         return $check;
10 10
     }
11 11
     glsr()->deprecated[] = sprintf(
12 12
         'The "%1$s" meta_key has been deprecated for Reviews. Please use the protected "_%1$s" meta_key instead.',
13 13
         $metaKey
14 14
     );
15
-    return get_post_meta($postId, '_'.$metaKey, $single);
16
-}, 10, 4);
15
+    return get_post_meta( $postId, '_'.$metaKey, $single );
16
+}, 10, 4 );
17 17
 
18 18
 // Modules/Html/Template.php
19
-add_filter('site-reviews/interpolate/reviews', function ($context, $template) {
19
+add_filter( 'site-reviews/interpolate/reviews', function( $context, $template ) {
20 20
     $search = '{{ navigation }}';
21
-    if (false !== strpos($template, $search)) {
21
+    if( false !== strpos( $template, $search ) ) {
22 22
         $context['navigation'] = $context['pagination'];
23 23
         glsr()->deprecated[] = 'The {{ navigation }} template key in "YOUR_THEME/site-reviews/reviews.php" has been deprecated. Please use the {{ pagination }} template key instead.';
24 24
     }
25 25
     return $context;
26
-}, 10, 2);
26
+}, 10, 2 );
27 27
 
28 28
 // Database/ReviewManager.php
29
-add_action('site-reviews/review/created', function ($review) {
30
-    if (has_action('site-reviews/local/review/create')) {
29
+add_action( 'site-reviews/review/created', function( $review ) {
30
+    if( has_action( 'site-reviews/local/review/create' ) ) {
31 31
         glsr()->deprecated[] = 'The "site-reviews/local/review/create" hook has been deprecated. Please use the "site-reviews/review/created" hook instead.';
32
-        do_action('site-reviews/local/review/create', (array) get_post($review->ID), (array) $review, $review->ID);
32
+        do_action( 'site-reviews/local/review/create', (array)get_post( $review->ID ), (array)$review, $review->ID );
33 33
     }
34
-}, 9);
34
+}, 9 );
35 35
 
36 36
 // Handlers/CreateReview.php
37
-add_action('site-reviews/review/submitted', function ($review) {
38
-    if (has_action('site-reviews/local/review/submitted')) {
37
+add_action( 'site-reviews/review/submitted', function( $review ) {
38
+    if( has_action( 'site-reviews/local/review/submitted' ) ) {
39 39
         glsr()->deprecated[] = 'The "site-reviews/local/review/submitted" hook has been deprecated. Please use the "site-reviews/review/submitted" hook instead.';
40
-        do_action('site-reviews/local/review/submitted', null, $review);
40
+        do_action( 'site-reviews/local/review/submitted', null, $review );
41 41
     }
42
-    if (has_filter('site-reviews/local/review/submitted/message')) {
42
+    if( has_filter( 'site-reviews/local/review/submitted/message' ) ) {
43 43
         glsr()->deprecated[] = 'The "site-reviews/local/review/submitted/message" hook has been deprecated.';
44 44
     }
45
-}, 9);
45
+}, 9 );
46 46
 
47 47
 // Database/ReviewManager.php
48
-add_filter('site-reviews/create/review-values', function ($values, $command) {
49
-    if (has_filter('site-reviews/local/review')) {
48
+add_filter( 'site-reviews/create/review-values', function( $values, $command ) {
49
+    if( has_filter( 'site-reviews/local/review' ) ) {
50 50
         glsr()->deprecated[] = 'The "site-reviews/local/review" hook has been deprecated. Please use the "site-reviews/create/review-values" hook instead.';
51
-        return apply_filters('site-reviews/local/review', $values, $command);
51
+        return apply_filters( 'site-reviews/local/review', $values, $command );
52 52
     }
53 53
     return $values;
54
-}, 9, 2);
54
+}, 9, 2 );
55 55
 
56 56
 // Handlers/EnqueuePublicAssets.php
57
-add_filter('site-reviews/enqueue/public/localize', function ($variables) {
58
-    if (has_filter('site-reviews/enqueue/localize')) {
57
+add_filter( 'site-reviews/enqueue/public/localize', function( $variables ) {
58
+    if( has_filter( 'site-reviews/enqueue/localize' ) ) {
59 59
         glsr()->deprecated[] = 'The "site-reviews/enqueue/localize" hook has been deprecated. Please use the "site-reviews/enqueue/public/localize" hook instead.';
60
-        return apply_filters('site-reviews/enqueue/localize', $variables);
60
+        return apply_filters( 'site-reviews/enqueue/localize', $variables );
61 61
     }
62 62
     return $variables;
63
-}, 9);
63
+}, 9 );
64 64
 
65 65
 // Modules/Rating.php
66
-add_filter('site-reviews/rating/average', function ($average) {
67
-    if (has_filter('site-reviews/average/rating')) {
66
+add_filter( 'site-reviews/rating/average', function( $average ) {
67
+    if( has_filter( 'site-reviews/average/rating' ) ) {
68 68
         glsr()->deprecated[] = 'The "site-reviews/average/rating" hook has been deprecated. Please use the "site-reviews/rating/average" hook instead.';
69 69
     }
70 70
     return $average;
71
-}, 9);
71
+}, 9 );
72 72
 
73 73
 // Modules/Rating.php
74
-add_filter('site-reviews/rating/ranking', function ($ranking) {
75
-    if (has_filter('site-reviews/bayesian/ranking')) {
74
+add_filter( 'site-reviews/rating/ranking', function( $ranking ) {
75
+    if( has_filter( 'site-reviews/bayesian/ranking' ) ) {
76 76
         glsr()->deprecated[] = 'The "site-reviews/bayesian/ranking" hook has been deprecated. Please use the "site-reviews/rating/ranking" hook instead.';
77 77
     }
78 78
     return $ranking;
79
-}, 9);
79
+}, 9 );
80 80
 
81 81
 // Modules/Html/Partials/SiteReviews.php
82
-add_filter('site-reviews/review/build/after', function ($renderedFields) {
83
-    if (has_filter('site-reviews/reviews/review/text')) {
82
+add_filter( 'site-reviews/review/build/after', function( $renderedFields ) {
83
+    if( has_filter( 'site-reviews/reviews/review/text' ) ) {
84 84
         glsr()->deprecated[] = 'The "site-reviews/reviews/review/text" hook has been deprecated. Please use the "site-reviews/review/build/after" hook instead.';
85 85
     }
86
-    if (has_filter('site-reviews/reviews/review/title')) {
86
+    if( has_filter( 'site-reviews/reviews/review/title' ) ) {
87 87
         glsr()->deprecated[] = 'The "site-reviews/reviews/review/title" hook has been deprecated. Please use the "site-reviews/review/build/after" hook instead.';
88 88
     }
89 89
     return $renderedFields;
90
-}, 9);
90
+}, 9 );
91 91
 
92 92
 // Modules/Html/Partials/SiteReviews.php
93
-add_filter('site-reviews/review/build/before', function ($review) {
94
-    if (has_filter('site-reviews/rendered/review')) {
93
+add_filter( 'site-reviews/review/build/before', function( $review ) {
94
+    if( has_filter( 'site-reviews/rendered/review' ) ) {
95 95
         glsr()->deprecated[] = 'The "site-reviews/rendered/review" hook has been deprecated. Please either use a custom "review.php" template (refer to the documentation), or use the "site-reviews/review/build/after" hook instead.';
96 96
     }
97
-    if (has_filter('site-reviews/rendered/review/meta/order')) {
97
+    if( has_filter( 'site-reviews/rendered/review/meta/order' ) ) {
98 98
         glsr()->deprecated[] = 'The "site-reviews/rendered/review/meta/order" hook has been deprecated. Please use a custom "review.php" template instead (refer to the documentation).';
99 99
     }
100
-    if (has_filter('site-reviews/rendered/review/order')) {
100
+    if( has_filter( 'site-reviews/rendered/review/order' ) ) {
101 101
         glsr()->deprecated[] = 'The "site-reviews/rendered/review/order" hook has been deprecated. Please use a custom "review.php" template instead (refer to the documentation).';
102 102
     }
103
-    if (has_filter('site-reviews/rendered/review-form/login-register')) {
103
+    if( has_filter( 'site-reviews/rendered/review-form/login-register' ) ) {
104 104
         glsr()->deprecated[] = 'The "site-reviews/rendered/review-form/login-register" hook has been deprecated. Please use a custom "login-register.php" template instead (refer to the documentation).';
105 105
     }
106
-    if (has_filter('site-reviews/reviews/navigation_links')) {
106
+    if( has_filter( 'site-reviews/reviews/navigation_links' ) ) {
107 107
         glsr()->deprecated[] = 'The "site-reviews/reviews/navigation_links" hook has been deprecated. Please use a custom "pagination.php" template instead (refer to the documentation).';
108 108
     }
109 109
     return $review;
110
-}, 9);
110
+}, 9 );
111 111
 
112
-add_filter('site-reviews/validate/custom', function ($result, $request) {
113
-    if (has_filter('site-reviews/validate/review/submission')) {
114
-        glsr_log()->warning('The "site-reviews/validate/review/submission" hook has been deprecated. Please use the "site-reviews/validate/custom" hook instead.');
115
-        return apply_filters('site-reviews/validate/review/submission', $result, $request);
112
+add_filter( 'site-reviews/validate/custom', function( $result, $request ) {
113
+    if( has_filter( 'site-reviews/validate/review/submission' ) ) {
114
+        glsr_log()->warning( 'The "site-reviews/validate/review/submission" hook has been deprecated. Please use the "site-reviews/validate/custom" hook instead.' );
115
+        return apply_filters( 'site-reviews/validate/review/submission', $result, $request );
116 116
     }
117 117
     return $result;
118
-}, 9, 2);
118
+}, 9, 2 );
119 119
 
120
-add_filter('site-reviews/views/file', function ($file, $view, $data) {
121
-    if (has_filter('site-reviews/addon/views/file')) {
120
+add_filter( 'site-reviews/views/file', function( $file, $view, $data ) {
121
+    if( has_filter( 'site-reviews/addon/views/file' ) ) {
122 122
         glsr()->deprecated[] = 'The "site-reviews/addon/views/file" hook has been deprecated. Please use the "site-reviews/views/file" hook instead.';
123
-        $file = apply_filters('site-reviews/addon/views/file', $file, $view, $data);
123
+        $file = apply_filters( 'site-reviews/addon/views/file', $file, $view, $data );
124 124
     }
125 125
     return $file;
126
-}, 9, 3);
126
+}, 9, 3 );
127 127
 
128
-add_action('wp_footer', function () {
129
-    $notices = array_keys(array_flip(glsr()->deprecated));
130
-    natsort($notices);
131
-    foreach ($notices as $notice) {
132
-        glsr_log()->warning($notice);
128
+add_action( 'wp_footer', function() {
129
+    $notices = array_keys( array_flip( glsr()->deprecated ) );
130
+    natsort( $notices );
131
+    foreach( $notices as $notice ) {
132
+        glsr_log()->warning( $notice );
133 133
     }
134 134
 });
Please login to merge, or discard this patch.
plugin/Widgets/SiteReviewsWidget.php 1 patch
Spacing   +43 added lines, -43 removed lines patch added patch discarded remove patch
@@ -11,65 +11,65 @@  discard block
 block discarded – undo
11 11
      * @param array $instance
12 12
      * @return void
13 13
      */
14
-    public function form($instance)
14
+    public function form( $instance )
15 15
     {
16
-        $this->widgetArgs = glsr(SiteReviewsShortcode::class)->normalizeAtts($instance);
17
-        $terms = glsr(Database::class)->getTerms();
18
-        $this->renderField('text', [
16
+        $this->widgetArgs = glsr( SiteReviewsShortcode::class )->normalizeAtts( $instance );
17
+        $terms = glsr( Database::class )->getTerms();
18
+        $this->renderField( 'text', [
19 19
             'class' => 'widefat',
20
-            'label' => __('Title', 'site-reviews'),
20
+            'label' => __( 'Title', 'site-reviews' ),
21 21
             'name' => 'title',
22
-        ]);
23
-        $this->renderField('number', [
22
+        ] );
23
+        $this->renderField( 'number', [
24 24
             'class' => 'small-text',
25 25
             'default' => 5,
26
-            'label' => __('How many reviews would you like to display?', 'site-reviews'),
26
+            'label' => __( 'How many reviews would you like to display?', 'site-reviews' ),
27 27
             'max' => 100,
28 28
             'name' => 'count',
29
-        ]);
30
-        $this->renderField('select', [
31
-            'label' => __('What is the minimum rating to display?', 'site-reviews'),
29
+        ] );
30
+        $this->renderField( 'select', [
31
+            'label' => __( 'What is the minimum rating to display?', 'site-reviews' ),
32 32
             'name' => 'rating',
33 33
             'options' => [
34
-                '5' => sprintf(_n('%s star', '%s stars', 5, 'site-reviews'), 5),
35
-                '4' => sprintf(_n('%s star', '%s stars', 4, 'site-reviews'), 4),
36
-                '3' => sprintf(_n('%s star', '%s stars', 3, 'site-reviews'), 3),
37
-                '2' => sprintf(_n('%s star', '%s stars', 2, 'site-reviews'), 2),
38
-                '1' => sprintf(_n('%s star', '%s stars', 1, 'site-reviews'), 1),
34
+                '5' => sprintf( _n( '%s star', '%s stars', 5, 'site-reviews' ), 5 ),
35
+                '4' => sprintf( _n( '%s star', '%s stars', 4, 'site-reviews' ), 4 ),
36
+                '3' => sprintf( _n( '%s star', '%s stars', 3, 'site-reviews' ), 3 ),
37
+                '2' => sprintf( _n( '%s star', '%s stars', 2, 'site-reviews' ), 2 ),
38
+                '1' => sprintf( _n( '%s star', '%s stars', 1, 'site-reviews' ), 1 ),
39 39
             ],
40
-        ]);
41
-        if (count(glsr()->reviewTypes) > 1) {
42
-            $this->renderField('select', [
40
+        ] );
41
+        if( count( glsr()->reviewTypes ) > 1 ) {
42
+            $this->renderField( 'select', [
43 43
                 'class' => 'widefat',
44
-                'label' => __('Which type of review would you like to display?', 'site-reviews'),
44
+                'label' => __( 'Which type of review would you like to display?', 'site-reviews' ),
45 45
                 'name' => 'type',
46
-                'options' => ['' => __('All Reviews', 'site-reviews')] + glsr()->reviewTypes,
47
-            ]);
46
+                'options' => ['' => __( 'All Reviews', 'site-reviews' )] + glsr()->reviewTypes,
47
+            ] );
48 48
         }
49
-        if (!empty($terms)) {
50
-            $this->renderField('select', [
49
+        if( !empty($terms) ) {
50
+            $this->renderField( 'select', [
51 51
                 'class' => 'widefat',
52
-                'label' => __('Limit reviews to this category', 'site-reviews'),
52
+                'label' => __( 'Limit reviews to this category', 'site-reviews' ),
53 53
                 'name' => 'category',
54
-                'options' => ['' => __('All Categories', 'site-reviews')] + $terms,
55
-            ]);
54
+                'options' => ['' => __( 'All Categories', 'site-reviews' )] + $terms,
55
+            ] );
56 56
         }
57
-        $this->renderField('text', [
57
+        $this->renderField( 'text', [
58 58
             'class' => 'widefat',
59 59
             'default' => '',
60
-            'description' => sprintf(__("Separate multiple ID's with a comma. You may also enter %s to automatically represent the current page/post ID.", 'site-reviews'), '<code>post_id</code>'),
61
-            'label' => __('Limit reviews to those assigned to this page/post ID', 'site-reviews'),
60
+            'description' => sprintf( __( "Separate multiple ID's with a comma. You may also enter %s to automatically represent the current page/post ID.", 'site-reviews' ), '<code>post_id</code>' ),
61
+            'label' => __( 'Limit reviews to those assigned to this page/post ID', 'site-reviews' ),
62 62
             'name' => 'assigned_to',
63
-        ]);
64
-        $this->renderField('text', [
63
+        ] );
64
+        $this->renderField( 'text', [
65 65
             'class' => 'widefat',
66
-            'label' => __('Enter any custom CSS classes here', 'site-reviews'),
66
+            'label' => __( 'Enter any custom CSS classes here', 'site-reviews' ),
67 67
             'name' => 'class',
68
-        ]);
69
-        $this->renderField('checkbox', [
68
+        ] );
69
+        $this->renderField( 'checkbox', [
70 70
             'name' => 'hide',
71
-            'options' => glsr(SiteReviewsShortcode::class)->getHideOptions(),
72
-        ]);
71
+            'options' => glsr( SiteReviewsShortcode::class )->getHideOptions(),
72
+        ] );
73 73
     }
74 74
 
75 75
     /**
@@ -77,13 +77,13 @@  discard block
 block discarded – undo
77 77
      * @param array $oldInstance
78 78
      * @return array
79 79
      */
80
-    public function update($newInstance, $oldInstance)
80
+    public function update( $newInstance, $oldInstance )
81 81
     {
82
-        if (!is_numeric($newInstance['count'])) {
82
+        if( !is_numeric( $newInstance['count'] ) ) {
83 83
             $newInstance['count'] = 10;
84 84
         }
85
-        $newInstance['count'] = min(50, max(0, intval($newInstance['count'])));
86
-        return parent::update($newInstance, $oldInstance);
85
+        $newInstance['count'] = min( 50, max( 0, intval( $newInstance['count'] ) ) );
86
+        return parent::update( $newInstance, $oldInstance );
87 87
     }
88 88
 
89 89
     /**
@@ -91,8 +91,8 @@  discard block
 block discarded – undo
91 91
      * @param array $instance
92 92
      * @return void
93 93
      */
94
-    public function widget($args, $instance)
94
+    public function widget( $args, $instance )
95 95
     {
96
-        echo glsr(SiteReviewsShortcode::class)->build($instance, $args, 'widget');
96
+        echo glsr( SiteReviewsShortcode::class )->build( $instance, $args, 'widget' );
97 97
     }
98 98
 }
Please login to merge, or discard this patch.
plugin/Widgets/SiteReviewsFormWidget.php 1 patch
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -11,42 +11,42 @@  discard block
 block discarded – undo
11 11
      * @param array $instance
12 12
      * @return void
13 13
      */
14
-    public function form($instance)
14
+    public function form( $instance )
15 15
     {
16
-        $this->widgetArgs = glsr(SiteReviewsFormShortcode::class)->normalizeAtts($instance);
17
-        $terms = glsr(Database::class)->getTerms();
18
-        $this->renderField('text', [
16
+        $this->widgetArgs = glsr( SiteReviewsFormShortcode::class )->normalizeAtts( $instance );
17
+        $terms = glsr( Database::class )->getTerms();
18
+        $this->renderField( 'text', [
19 19
             'class' => 'widefat',
20
-            'label' => __('Title', 'site-reviews'),
20
+            'label' => __( 'Title', 'site-reviews' ),
21 21
             'name' => 'title',
22
-        ]);
23
-        $this->renderField('textarea', [
22
+        ] );
23
+        $this->renderField( 'textarea', [
24 24
             'class' => 'widefat',
25
-            'label' => __('Description', 'site-reviews'),
25
+            'label' => __( 'Description', 'site-reviews' ),
26 26
             'name' => 'description',
27
-        ]);
28
-        $this->renderField('select', [
27
+        ] );
28
+        $this->renderField( 'select', [
29 29
             'class' => 'widefat',
30
-            'label' => __('Automatically assign a category', 'site-reviews'),
30
+            'label' => __( 'Automatically assign a category', 'site-reviews' ),
31 31
             'name' => 'category',
32
-            'options' => ['' => __('Do not assign a category', 'site-reviews')] + $terms,
33
-        ]);
34
-        $this->renderField('text', [
32
+            'options' => ['' => __( 'Do not assign a category', 'site-reviews' )] + $terms,
33
+        ] );
34
+        $this->renderField( 'text', [
35 35
             'class' => 'widefat',
36 36
             'default' => '',
37
-            'description' => sprintf(__('You may also enter %s to assign to the current post.', 'site-reviews'), '<code>post_id</code>'),
38
-            'label' => __('Assign reviews to a custom page/post ID', 'site-reviews'),
37
+            'description' => sprintf( __( 'You may also enter %s to assign to the current post.', 'site-reviews' ), '<code>post_id</code>' ),
38
+            'label' => __( 'Assign reviews to a custom page/post ID', 'site-reviews' ),
39 39
             'name' => 'assign_to',
40
-        ]);
41
-        $this->renderField('text', [
40
+        ] );
41
+        $this->renderField( 'text', [
42 42
             'class' => 'widefat',
43
-            'label' => __('Enter any custom CSS classes here', 'site-reviews'),
43
+            'label' => __( 'Enter any custom CSS classes here', 'site-reviews' ),
44 44
             'name' => 'class',
45
-        ]);
46
-        $this->renderField('checkbox', [
45
+        ] );
46
+        $this->renderField( 'checkbox', [
47 47
             'name' => 'hide',
48
-            'options' => glsr(SiteReviewsFormShortcode::class)->getHideOptions(),
49
-        ]);
48
+            'options' => glsr( SiteReviewsFormShortcode::class )->getHideOptions(),
49
+        ] );
50 50
     }
51 51
 
52 52
     /**
@@ -54,8 +54,8 @@  discard block
 block discarded – undo
54 54
      * @param array $instance
55 55
      * @return void
56 56
      */
57
-    public function widget($args, $instance)
57
+    public function widget( $args, $instance )
58 58
     {
59
-        echo glsr(SiteReviewsFormShortcode::class)->build($instance, $args, 'widget');
59
+        echo glsr( SiteReviewsFormShortcode::class )->build( $instance, $args, 'widget' );
60 60
     }
61 61
 }
Please login to merge, or discard this patch.
plugin/Widgets/SiteReviewsSummaryWidget.php 1 patch
Spacing   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -11,47 +11,47 @@  discard block
 block discarded – undo
11 11
      * @param array $instance
12 12
      * @return void
13 13
      */
14
-    public function form($instance)
14
+    public function form( $instance )
15 15
     {
16
-        $this->widgetArgs = glsr(SiteReviewsSummaryShortcode::class)->normalizeAtts($instance);
17
-        $terms = glsr(Database::class)->getTerms();
18
-        $this->renderField('text', [
16
+        $this->widgetArgs = glsr( SiteReviewsSummaryShortcode::class )->normalizeAtts( $instance );
17
+        $terms = glsr( Database::class )->getTerms();
18
+        $this->renderField( 'text', [
19 19
             'class' => 'widefat',
20
-            'label' => __('Title', 'site-reviews'),
20
+            'label' => __( 'Title', 'site-reviews' ),
21 21
             'name' => 'title',
22
-        ]);
23
-        if (count(glsr()->reviewTypes) > 1) {
24
-            $this->renderField('select', [
22
+        ] );
23
+        if( count( glsr()->reviewTypes ) > 1 ) {
24
+            $this->renderField( 'select', [
25 25
                 'class' => 'widefat',
26
-                'label' => __('Which type of review would you like to use?', 'site-reviews'),
26
+                'label' => __( 'Which type of review would you like to use?', 'site-reviews' ),
27 27
                 'name' => 'type',
28
-                'options' => ['' => __('All review types', 'site-reviews')] + glsr()->reviewTypes,
29
-            ]);
28
+                'options' => ['' => __( 'All review types', 'site-reviews' )] + glsr()->reviewTypes,
29
+            ] );
30 30
         }
31
-        if (!empty($terms)) {
32
-            $this->renderField('select', [
31
+        if( !empty($terms) ) {
32
+            $this->renderField( 'select', [
33 33
                 'class' => 'widefat',
34
-                'label' => __('Limit summary to this category', 'site-reviews'),
34
+                'label' => __( 'Limit summary to this category', 'site-reviews' ),
35 35
                 'name' => 'category',
36
-                'options' => ['' => __('All Categories', 'site-reviews')] + $terms,
37
-            ]);
36
+                'options' => ['' => __( 'All Categories', 'site-reviews' )] + $terms,
37
+            ] );
38 38
         }
39
-        $this->renderField('text', [
39
+        $this->renderField( 'text', [
40 40
             'class' => 'widefat',
41 41
             'default' => '',
42
-            'description' => sprintf(__("Separate multiple ID's with a comma. You may also enter %s to automatically represent the current page/post ID.", 'site-reviews'), '<code>post_id</code>'),
43
-            'label' => __('Limit summary to reviews assigned to a page/post ID', 'site-reviews'),
42
+            'description' => sprintf( __( "Separate multiple ID's with a comma. You may also enter %s to automatically represent the current page/post ID.", 'site-reviews' ), '<code>post_id</code>' ),
43
+            'label' => __( 'Limit summary to reviews assigned to a page/post ID', 'site-reviews' ),
44 44
             'name' => 'assigned_to',
45
-        ]);
46
-        $this->renderField('text', [
45
+        ] );
46
+        $this->renderField( 'text', [
47 47
             'class' => 'widefat',
48
-            'label' => __('Enter any custom CSS classes here', 'site-reviews'),
48
+            'label' => __( 'Enter any custom CSS classes here', 'site-reviews' ),
49 49
             'name' => 'class',
50
-        ]);
51
-        $this->renderField('checkbox', [
50
+        ] );
51
+        $this->renderField( 'checkbox', [
52 52
             'name' => 'hide',
53
-            'options' => glsr(SiteReviewsSummaryShortcode::class)->getHideOptions(),
54
-        ]);
53
+            'options' => glsr( SiteReviewsSummaryShortcode::class )->getHideOptions(),
54
+        ] );
55 55
     }
56 56
 
57 57
     /**
@@ -59,8 +59,8 @@  discard block
 block discarded – undo
59 59
      * @param array $instance
60 60
      * @return void
61 61
      */
62
-    public function widget($args, $instance)
62
+    public function widget( $args, $instance )
63 63
     {
64
-        echo glsr(SiteReviewsSummaryShortcode::class)->build($instance, $args, 'widget');
64
+        echo glsr( SiteReviewsSummaryShortcode::class )->build( $instance, $args, 'widget' );
65 65
     }
66 66
 }
Please login to merge, or discard this patch.
plugin/Container.php 1 patch
Spacing   +46 added lines, -46 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
      */
44 44
     public static function load()
45 45
     {
46
-        if (empty(static::$instance)) {
46
+        if( empty(static::$instance) ) {
47 47
             static::$instance = new static();
48 48
         }
49 49
         return static::$instance;
@@ -53,16 +53,16 @@  discard block
 block discarded – undo
53 53
      * @param string $property
54 54
      * @return mixed
55 55
      */
56
-    public function __get($property)
56
+    public function __get( $property )
57 57
     {
58
-        if (property_exists($this, $property) && !in_array($property, static::PROTECTED_PROPERTIES)) {
58
+        if( property_exists( $this, $property ) && !in_array( $property, static::PROTECTED_PROPERTIES ) ) {
59 59
             return $this->$property;
60 60
         }
61
-        $constant = 'static::'.strtoupper($this->make(Helper::class)->snakeCase($property));
62
-        if (defined($constant)) {
63
-            return constant($constant);
61
+        $constant = 'static::'.strtoupper( $this->make( Helper::class )->snakeCase( $property ) );
62
+        if( defined( $constant ) ) {
63
+            return constant( $constant );
64 64
         }
65
-        return glsr_get($this->storage, $property, null);
65
+        return glsr_get( $this->storage, $property, null );
66 66
     }
67 67
 
68 68
     /**
@@ -70,14 +70,14 @@  discard block
 block discarded – undo
70 70
      * @param string $value
71 71
      * @return void
72 72
      */
73
-    public function __set($property, $value)
73
+    public function __set( $property, $value )
74 74
     {
75
-        if (!property_exists($this, $property) || in_array($property, static::PROTECTED_PROPERTIES)) {
75
+        if( !property_exists( $this, $property ) || in_array( $property, static::PROTECTED_PROPERTIES ) ) {
76 76
             $this->storage[$property] = $value;
77
-        } elseif (!isset($this->$property)) {
77
+        } elseif( !isset($this->$property) ) {
78 78
             $this->$property = $value;
79 79
         } else {
80
-            throw new Exception(sprintf('The "%s" property cannot be changed once set.', $property));
80
+            throw new Exception( sprintf( 'The "%s" property cannot be changed once set.', $property ) );
81 81
         }
82 82
     }
83 83
 
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
      * @param mixed $concrete
88 88
      * @return mixed
89 89
      */
90
-    public function bind($alias, $concrete)
90
+    public function bind( $alias, $concrete )
91 91
     {
92 92
         $this->services[$alias] = $concrete;
93 93
     }
@@ -97,21 +97,21 @@  discard block
 block discarded – undo
97 97
      * @param mixed $abstract
98 98
      * @return mixed
99 99
      */
100
-    public function make($abstract)
100
+    public function make( $abstract )
101 101
     {
102
-        if (!isset($this->services[$abstract])) {
103
-            $abstract = $this->addNamespace($abstract);
102
+        if( !isset($this->services[$abstract]) ) {
103
+            $abstract = $this->addNamespace( $abstract );
104 104
         }
105
-        if (isset($this->services[$abstract])) {
105
+        if( isset($this->services[$abstract]) ) {
106 106
             $abstract = $this->services[$abstract];
107 107
         }
108
-        if (is_callable($abstract)) {
109
-            return call_user_func_array($abstract, [$this]);
108
+        if( is_callable( $abstract ) ) {
109
+            return call_user_func_array( $abstract, [$this] );
110 110
         }
111
-        if (is_object($abstract)) {
111
+        if( is_object( $abstract ) ) {
112 112
             return $abstract;
113 113
         }
114
-        return $this->resolve($abstract);
114
+        return $this->resolve( $abstract );
115 115
     }
116 116
 
117 117
     /**
@@ -125,9 +125,9 @@  discard block
 block discarded – undo
125 125
     /**
126 126
      * @return mixed
127 127
      */
128
-    public function sessionGet($key, $fallback = '')
128
+    public function sessionGet( $key, $fallback = '' )
129 129
     {
130
-        $value = glsr_get($this->session, $key, $fallback);
130
+        $value = glsr_get( $this->session, $key, $fallback );
131 131
         unset($this->session[$key]);
132 132
         return $value;
133 133
     }
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
     /**
136 136
      * @return void
137 137
      */
138
-    public function sessionSet($key, $value)
138
+    public function sessionSet( $key, $value )
139 139
     {
140 140
         $this->session[$key] = $value;
141 141
     }
@@ -146,9 +146,9 @@  discard block
 block discarded – undo
146 146
      * @param callable|string|null $binding
147 147
      * @return void
148 148
      */
149
-    public function singleton($alias, $binding)
149
+    public function singleton( $alias, $binding )
150 150
     {
151
-        $this->bind($alias, $this->make($binding));
151
+        $this->bind( $alias, $this->make( $binding ) );
152 152
     }
153 153
 
154 154
     /**
@@ -156,9 +156,9 @@  discard block
 block discarded – undo
156 156
      * @param string $abstract
157 157
      * @return string
158 158
      */
159
-    protected function addNamespace($abstract)
159
+    protected function addNamespace( $abstract )
160 160
     {
161
-        if (false === strpos($abstract, __NAMESPACE__) && !class_exists($abstract)) {
161
+        if( false === strpos( $abstract, __NAMESPACE__ ) && !class_exists( $abstract ) ) {
162 162
             $abstract = __NAMESPACE__.'\\'.$abstract;
163 163
         }
164 164
         return $abstract;
@@ -170,21 +170,21 @@  discard block
 block discarded – undo
170 170
      * @return mixed
171 171
      * @throws Exception
172 172
      */
173
-    protected function resolve($concrete)
173
+    protected function resolve( $concrete )
174 174
     {
175
-        if ($concrete instanceof Closure) {
176
-            return $concrete($this);
175
+        if( $concrete instanceof Closure ) {
176
+            return $concrete( $this );
177 177
         }
178
-        $reflector = new ReflectionClass($concrete);
179
-        if (!$reflector->isInstantiable()) {
180
-            throw new Exception('Target ['.$concrete.'] is not instantiable.');
178
+        $reflector = new ReflectionClass( $concrete );
179
+        if( !$reflector->isInstantiable() ) {
180
+            throw new Exception( 'Target ['.$concrete.'] is not instantiable.' );
181 181
         }
182 182
         $constructor = $reflector->getConstructor();
183
-        if (empty($constructor)) {
183
+        if( empty($constructor) ) {
184 184
             return new $concrete();
185 185
         }
186 186
         return $reflector->newInstanceArgs(
187
-            $this->resolveDependencies($constructor->getParameters())
187
+            $this->resolveDependencies( $constructor->getParameters() )
188 188
         );
189 189
     }
190 190
 
@@ -193,12 +193,12 @@  discard block
 block discarded – undo
193 193
      * @return mixed
194 194
      * @throws Exception
195 195
      */
196
-    protected function resolveClass(ReflectionParameter $parameter)
196
+    protected function resolveClass( ReflectionParameter $parameter )
197 197
     {
198 198
         try {
199
-            return $this->make($parameter->getClass()->name);
200
-        } catch (Exception $error) {
201
-            if ($parameter->isOptional()) {
199
+            return $this->make( $parameter->getClass()->name );
200
+        } catch( Exception $error ) {
201
+            if( $parameter->isOptional() ) {
202 202
                 return $parameter->getDefaultValue();
203 203
             }
204 204
             throw $error;
@@ -209,13 +209,13 @@  discard block
 block discarded – undo
209 209
      * Resolve all of the dependencies from the ReflectionParameters.
210 210
      * @return array
211 211
      */
212
-    protected function resolveDependencies(array $dependencies)
212
+    protected function resolveDependencies( array $dependencies )
213 213
     {
214 214
         $results = [];
215
-        foreach ($dependencies as $dependency) {
216
-            $results[] = !is_null($class = $dependency->getClass())
217
-                ? $this->resolveClass($dependency)
218
-                : $this->resolveDependency($dependency);
215
+        foreach( $dependencies as $dependency ) {
216
+            $results[] = !is_null( $class = $dependency->getClass() )
217
+                ? $this->resolveClass( $dependency )
218
+                : $this->resolveDependency( $dependency );
219 219
         }
220 220
         return $results;
221 221
     }
@@ -224,9 +224,9 @@  discard block
 block discarded – undo
224 224
      * Resolve a single ReflectionParameter dependency.
225 225
      * @return array|null
226 226
      */
227
-    protected function resolveDependency(ReflectionParameter $parameter)
227
+    protected function resolveDependency( ReflectionParameter $parameter )
228 228
     {
229
-        if ($parameter->isArray() && $parameter->isDefaultValueAvailable()) {
229
+        if( $parameter->isArray() && $parameter->isDefaultValueAvailable() ) {
230 230
             return $parameter->getDefaultValue();
231 231
         }
232 232
         return null;
Please login to merge, or discard this patch.