Passed
Push — feature/rebusify ( fe0687...495106 )
by Paul
05:25 queued 15s
created
plugin/Defaults/ValidateReviewDefaults.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
             'content' => '',
19 19
             'email' => '',
20 20
             'form_id' => '',
21
-            'ip_address' => glsr(Helper::class)->getIpAddress(), // required for Akismet and Blacklist validation
21
+            'ip_address' => glsr( Helper::class )->getIpAddress(), // required for Akismet and Blacklist validation
22 22
             'name' => '',
23 23
             'rating' => '0',
24 24
             'terms' => '',
Please login to merge, or discard this patch.
plugin/Defaults/SlackDefaults.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,11 +12,11 @@
 block discarded – undo
12 12
     protected function defaults()
13 13
     {
14 14
         return [
15
-            'button_text' => __('View Review', 'site-reviews'),
15
+            'button_text' => __( 'View Review', 'site-reviews' ),
16 16
             'button_url' => '',
17 17
             'color' => '#665068',
18 18
             'fallback' => '',
19
-            'icon_url' => glsr()->url('assets/images/icon.png'),
19
+            'icon_url' => glsr()->url( 'assets/images/icon.png' ),
20 20
             'pretext' => '',
21 21
             'username' => glsr()->name,
22 22
         ];
Please login to merge, or discard this patch.
plugin/Defaults/PostTypeDefaults.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
13 13
     {
14 14
         return [
15 15
             'columns' => [
16
-                'title' => __('Title', 'site-reviews'),
17
-                'date' => __('Date', 'site-reviews'),
16
+                'title' => __( 'Title', 'site-reviews' ),
17
+                'date' => __( 'Date', 'site-reviews' ),
18 18
             ],
19 19
             'has_archive' => false,
20 20
             'hierarchical' => false,
Please login to merge, or discard this patch.
plugin/Controllers/RestCategoryController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 {
14 14
     public function __construct()
15 15
     {
16
-        $this->meta = new WP_REST_Term_Meta_Fields(Application::TAXONOMY);
16
+        $this->meta = new WP_REST_Term_Meta_Fields( Application::TAXONOMY );
17 17
         $this->namespace = Application::ID.'/v1';
18 18
         $this->rest_base = 'categories';
19 19
         $this->taxonomy = Application::TAXONOMY;
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
      */
25 25
     public function register_routes()
26 26
     {
27
-        register_rest_route($this->namespace, '/'.$this->rest_base, [
27
+        register_rest_route( $this->namespace, '/'.$this->rest_base, [
28 28
             [
29 29
                 'args' => $this->get_collection_params(),
30 30
                 'callback' => [$this, 'get_items'],
@@ -32,6 +32,6 @@  discard block
 block discarded – undo
32 32
                 'permission_callback' => [$this, 'get_items_permissions_check'],
33 33
             ],
34 34
             'schema' => [$this, 'get_public_item_schema'],
35
-        ]);
35
+        ] );
36 36
     }
37 37
 }
Please login to merge, or discard this patch.
plugin/Controllers/PublicController.php 1 patch
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -28,14 +28,14 @@  discard block
 block discarded – undo
28 28
      * @return string
29 29
      * @filter script_loader_tag
30 30
      */
31
-    public function filterEnqueuedScripts($tag, $handle)
31
+    public function filterEnqueuedScripts( $tag, $handle )
32 32
     {
33 33
         $scripts = [Application::ID.'/google-recaptcha'];
34
-        if (in_array($handle, apply_filters('site-reviews/async-scripts', $scripts))) {
35
-            $tag = str_replace(' src=', ' async src=', $tag);
34
+        if( in_array( $handle, apply_filters( 'site-reviews/async-scripts', $scripts ) ) ) {
35
+            $tag = str_replace( ' src=', ' async src=', $tag );
36 36
         }
37
-        if (in_array($handle, apply_filters('site-reviews/defer-scripts', $scripts))) {
38
-            $tag = str_replace(' src=', ' defer src=', $tag);
37
+        if( in_array( $handle, apply_filters( 'site-reviews/defer-scripts', $scripts ) ) ) {
38
+            $tag = str_replace( ' src=', ' defer src=', $tag );
39 39
         }
40 40
         return $tag;
41 41
     }
@@ -44,10 +44,10 @@  discard block
 block discarded – undo
44 44
      * @return array
45 45
      * @filter site-reviews/config/forms/submission-form
46 46
      */
47
-    public function filterFieldOrder(array $config)
47
+    public function filterFieldOrder( array $config )
48 48
     {
49
-        $order = (array) apply_filters('site-reviews/submission-form/order', array_keys($config));
50
-        return array_intersect_key(array_merge(array_flip($order), $config), $config);
49
+        $order = (array)apply_filters( 'site-reviews/submission-form/order', array_keys( $config ) );
50
+        return array_intersect_key( array_merge( array_flip( $order ), $config ), $config );
51 51
     }
52 52
 
53 53
     /**
@@ -55,10 +55,10 @@  discard block
 block discarded – undo
55 55
      * @return array
56 56
      * @filter query_vars
57 57
      */
58
-    public function filterQueryVars($vars)
58
+    public function filterQueryVars( $vars )
59 59
     {
60
-        $vars = glsr(Helper::class)->consolidateArray($vars);
61
-        $vars[] = glsr()->constant('PAGED_QUERY_VAR');
60
+        $vars = glsr( Helper::class )->consolidateArray( $vars );
61
+        $vars[] = glsr()->constant( 'PAGED_QUERY_VAR' );
62 62
         return $vars;
63 63
     }
64 64
 
@@ -67,18 +67,18 @@  discard block
 block discarded – undo
67 67
      * @return string
68 68
      * @filter site-reviews/render/view
69 69
      */
70
-    public function filterRenderView($view)
70
+    public function filterRenderView( $view )
71 71
     {
72
-        return glsr(Style::class)->filterView($view);
72
+        return glsr( Style::class )->filterView( $view );
73 73
     }
74 74
 
75 75
     /**
76 76
      * @return void
77 77
      * @action site-reviews/builder
78 78
      */
79
-    public function modifyBuilder(Builder $instance)
79
+    public function modifyBuilder( Builder $instance )
80 80
     {
81
-        call_user_func_array([glsr(Style::class), 'modifyField'], [$instance]);
81
+        call_user_func_array( [glsr( Style::class ), 'modifyField'], [$instance] );
82 82
     }
83 83
 
84 84
     /**
@@ -87,18 +87,18 @@  discard block
 block discarded – undo
87 87
      */
88 88
     public function renderSchema()
89 89
     {
90
-        glsr(Schema::class)->render();
90
+        glsr( Schema::class )->render();
91 91
     }
92 92
 
93 93
     /**
94 94
      * @return CreateReview
95 95
      */
96
-    public function routerSubmitReview(array $request)
96
+    public function routerSubmitReview( array $request )
97 97
     {
98
-        $validated = glsr(ValidateReview::class)->validate($request);
99
-        $command = new CreateReview($validated->request);
100
-        if (empty($validated->error) && !$validated->recaptchaIsUnset) {
101
-            $this->execute($command);
98
+        $validated = glsr( ValidateReview::class )->validate( $request );
99
+        $command = new CreateReview( $validated->request );
100
+        if( empty($validated->error) && !$validated->recaptchaIsUnset ) {
101
+            $this->execute( $command );
102 102
         }
103 103
         return $command;
104 104
     }
Please login to merge, or discard this patch.
plugin/Controllers/AdminController.php 1 patch
Spacing   +68 added lines, -68 removed lines patch added patch discarded remove patch
@@ -21,9 +21,9 @@  discard block
 block discarded – undo
21 21
      */
22 22
     public function enqueueAssets()
23 23
     {
24
-        $command = new EnqueueAdminAssets([
24
+        $command = new EnqueueAdminAssets( [
25 25
             'pointers' => [[
26
-                'content' => __('You can pin exceptional reviews so that they are always shown first.', 'site-reviews'),
26
+                'content' => __( 'You can pin exceptional reviews so that they are always shown first.', 'site-reviews' ),
27 27
                 'id' => 'glsr-pointer-pinned',
28 28
                 'position' => [
29 29
                     'edge' => 'right',
@@ -31,21 +31,21 @@  discard block
 block discarded – undo
31 31
                 ],
32 32
                 'screen' => Application::POST_TYPE,
33 33
                 'target' => '#misc-pub-pinned',
34
-                'title' => __('Pin Your Reviews', 'site-reviews'),
34
+                'title' => __( 'Pin Your Reviews', 'site-reviews' ),
35 35
             ]],
36
-        ]);
37
-        $this->execute($command);
36
+        ] );
37
+        $this->execute( $command );
38 38
     }
39 39
 
40 40
     /**
41 41
      * @return array
42 42
      * @filter plugin_action_links_site-reviews/site-reviews.php
43 43
      */
44
-    public function filterActionLinks(array $links)
44
+    public function filterActionLinks( array $links )
45 45
     {
46
-        $links['settings'] = glsr(Builder::class)->a(__('Settings', 'site-reviews'), [
47
-            'href' => admin_url('edit.php?post_type='.Application::POST_TYPE.'&page=settings'),
48
-        ]);
46
+        $links['settings'] = glsr( Builder::class )->a( __( 'Settings', 'site-reviews' ), [
47
+            'href' => admin_url( 'edit.php?post_type='.Application::POST_TYPE.'&page=settings' ),
48
+        ] );
49 49
         return $links;
50 50
     }
51 51
 
@@ -55,9 +55,9 @@  discard block
 block discarded – undo
55 55
      * @return array
56 56
      * @filter map_meta_cap
57 57
      */
58
-    public function filterCreateCapability($capabilities, $capability)
58
+    public function filterCreateCapability( $capabilities, $capability )
59 59
     {
60
-        if ($capability == 'create_'.Application::POST_TYPE) {
60
+        if( $capability == 'create_'.Application::POST_TYPE ) {
61 61
             $capabilities[] = 'do_not_allow';
62 62
         }
63 63
         return $capabilities;
@@ -68,23 +68,23 @@  discard block
 block discarded – undo
68 68
      * @return array
69 69
      * @filter dashboard_glance_items
70 70
      */
71
-    public function filterDashboardGlanceItems($items)
71
+    public function filterDashboardGlanceItems( $items )
72 72
     {
73
-        $postCount = wp_count_posts(Application::POST_TYPE);
74
-        if (empty($postCount->publish)) {
73
+        $postCount = wp_count_posts( Application::POST_TYPE );
74
+        if( empty($postCount->publish) ) {
75 75
             return $items;
76 76
         }
77
-        $text = _n('%s Review', '%s Reviews', $postCount->publish, 'site-reviews');
78
-        $text = sprintf($text, number_format_i18n($postCount->publish));
79
-        $items = glsr(Helper::class)->consolidateArray($items);
80
-        $items[] = current_user_can(get_post_type_object(Application::POST_TYPE)->cap->edit_posts)
81
-            ? glsr(Builder::class)->a($text, [
77
+        $text = _n( '%s Review', '%s Reviews', $postCount->publish, 'site-reviews' );
78
+        $text = sprintf( $text, number_format_i18n( $postCount->publish ) );
79
+        $items = glsr( Helper::class )->consolidateArray( $items );
80
+        $items[] = current_user_can( get_post_type_object( Application::POST_TYPE )->cap->edit_posts )
81
+            ? glsr( Builder::class )->a( $text, [
82 82
                 'class' => 'glsr-review-count',
83 83
                 'href' => 'edit.php?post_type='.Application::POST_TYPE,
84
-            ])
85
-            : glsr(Builder::class)->span($text, [
84
+            ] )
85
+            : glsr( Builder::class )->span( $text, [
86 86
                 'class' => 'glsr-review-count',
87
-            ]);
87
+            ] );
88 88
         return $items;
89 89
     }
90 90
 
@@ -93,11 +93,11 @@  discard block
 block discarded – undo
93 93
      * @return array
94 94
      * @filter mce_external_plugins
95 95
      */
96
-    public function filterTinymcePlugins($plugins)
96
+    public function filterTinymcePlugins( $plugins )
97 97
     {
98
-        if (current_user_can('edit_posts') || current_user_can('edit_pages')) {
99
-            $plugins = glsr(Helper::class)->consolidateArray($plugins);
100
-            $plugins['glsr_shortcode'] = glsr()->url('assets/scripts/mce-plugin.js');
98
+        if( current_user_can( 'edit_posts' ) || current_user_can( 'edit_pages' ) ) {
99
+            $plugins = glsr( Helper::class )->consolidateArray( $plugins );
100
+            $plugins['glsr_shortcode'] = glsr()->url( 'assets/scripts/mce-plugin.js' );
101 101
         }
102 102
         return $plugins;
103 103
     }
@@ -108,12 +108,12 @@  discard block
 block discarded – undo
108 108
      */
109 109
     public function registerTinymcePopups()
110 110
     {
111
-        $command = new RegisterTinymcePopups([
112
-            'site_reviews' => esc_html__('Recent Reviews', 'site-reviews'),
113
-            'site_reviews_form' => esc_html__('Submit a Review', 'site-reviews'),
114
-            'site_reviews_summary' => esc_html__('Summary of Reviews', 'site-reviews'),
115
-        ]);
116
-        $this->execute($command);
111
+        $command = new RegisterTinymcePopups( [
112
+            'site_reviews' => esc_html__( 'Recent Reviews', 'site-reviews' ),
113
+            'site_reviews_form' => esc_html__( 'Submit a Review', 'site-reviews' ),
114
+            'site_reviews_summary' => esc_html__( 'Summary of Reviews', 'site-reviews' ),
115
+        ] );
116
+        $this->execute( $command );
117 117
     }
118 118
 
119 119
     /**
@@ -121,22 +121,22 @@  discard block
 block discarded – undo
121 121
      * @return void|null
122 122
      * @action media_buttons
123 123
      */
124
-    public function renderTinymceButton($editorId)
124
+    public function renderTinymceButton( $editorId )
125 125
     {
126
-        $allowedEditors = apply_filters('site-reviews/tinymce/editor-ids', ['content'], $editorId);
127
-        if ('post' != glsr_current_screen()->base || !in_array($editorId, $allowedEditors)) {
126
+        $allowedEditors = apply_filters( 'site-reviews/tinymce/editor-ids', ['content'], $editorId );
127
+        if( 'post' != glsr_current_screen()->base || !in_array( $editorId, $allowedEditors ) ) {
128 128
             return;
129 129
         }
130 130
         $shortcodes = [];
131
-        foreach (glsr()->mceShortcodes as $shortcode => $values) {
131
+        foreach( glsr()->mceShortcodes as $shortcode => $values ) {
132 132
             $shortcodes[$shortcode] = $values;
133 133
         }
134
-        if (empty($shortcodes)) {
134
+        if( empty($shortcodes) ) {
135 135
             return;
136 136
         }
137
-        glsr()->render('partials/editor/tinymce', [
137
+        glsr()->render( 'partials/editor/tinymce', [
138 138
             'shortcodes' => $shortcodes,
139
-        ]);
139
+        ] );
140 140
     }
141 141
 
142 142
     /**
@@ -144,8 +144,8 @@  discard block
 block discarded – undo
144 144
      */
145 145
     public function routerClearConsole()
146 146
     {
147
-        glsr(Console::class)->clear();
148
-        glsr(Notice::class)->addSuccess(__('Console cleared.', 'site-reviews'));
147
+        glsr( Console::class )->clear();
148
+        glsr( Notice::class )->addSuccess( __( 'Console cleared.', 'site-reviews' ) );
149 149
     }
150 150
 
151 151
     /**
@@ -153,19 +153,19 @@  discard block
 block discarded – undo
153 153
      */
154 154
     public function routerFetchConsole()
155 155
     {
156
-        glsr(Notice::class)->addSuccess(__('Console reloaded.', 'site-reviews'));
156
+        glsr( Notice::class )->addSuccess( __( 'Console reloaded.', 'site-reviews' ) );
157 157
     }
158 158
 
159 159
     /**
160 160
      * @param bool $showNotice
161 161
      * @return void
162 162
      */
163
-    public function routerCountReviews($showNotice = true)
163
+    public function routerCountReviews( $showNotice = true )
164 164
     {
165
-        glsr(CountsManager::class)->countAll();
166
-        glsr(OptionManager::class)->set('last_review_count', current_time('timestamp'));
167
-        if ($showNotice) {
168
-            glsr(Notice::class)->clear()->addSuccess(__('Recalculated rating counts.', 'site-reviews'));
165
+        glsr( CountsManager::class )->countAll();
166
+        glsr( OptionManager::class )->set( 'last_review_count', current_time( 'timestamp' ) );
167
+        if( $showNotice ) {
168
+            glsr( Notice::class )->clear()->addSuccess( __( 'Recalculated rating counts.', 'site-reviews' ) );
169 169
         }
170 170
     }
171 171
 
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
      */
175 175
     public function routerDownloadConsole()
176 176
     {
177
-        $this->download(Application::ID.'-console.txt', glsr(Console::class)->get());
177
+        $this->download( Application::ID.'-console.txt', glsr( Console::class )->get() );
178 178
     }
179 179
 
180 180
     /**
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
      */
183 183
     public function routerDownloadSystemInfo()
184 184
     {
185
-        $this->download(Application::ID.'-system-info.txt', glsr(System::class)->get());
185
+        $this->download( Application::ID.'-system-info.txt', glsr( System::class )->get() );
186 186
     }
187 187
 
188 188
     /**
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
      */
191 191
     public function routerExportSettings()
192 192
     {
193
-        $this->download(Application::ID.'-settings.json', glsr(OptionManager::class)->json());
193
+        $this->download( Application::ID.'-settings.json', glsr( OptionManager::class )->json() );
194 194
     }
195 195
 
196 196
     /**
@@ -199,35 +199,35 @@  discard block
 block discarded – undo
199 199
     public function routerImportSettings()
200 200
     {
201 201
         $file = $_FILES['import-file'];
202
-        if (UPLOAD_ERR_OK !== $file['error']) {
203
-            return glsr(Notice::class)->addError($this->getUploadError($file['error']));
202
+        if( UPLOAD_ERR_OK !== $file['error'] ) {
203
+            return glsr( Notice::class )->addError( $this->getUploadError( $file['error'] ) );
204 204
         }
205
-        if ('application/json' !== $file['type'] || !glsr(Helper::class)->endsWith('.json', $file['name'])) {
206
-            return glsr(Notice::class)->addError(__('Please use a valid Site Reviews settings file.', 'site-reviews'));
205
+        if( 'application/json' !== $file['type'] || !glsr( Helper::class )->endsWith( '.json', $file['name'] ) ) {
206
+            return glsr( Notice::class )->addError( __( 'Please use a valid Site Reviews settings file.', 'site-reviews' ) );
207 207
         }
208
-        $settings = json_decode(file_get_contents($file['tmp_name']), true);
209
-        if (empty($settings)) {
210
-            return glsr(Notice::class)->addWarning(__('There were no settings found to import.', 'site-reviews'));
208
+        $settings = json_decode( file_get_contents( $file['tmp_name'] ), true );
209
+        if( empty($settings) ) {
210
+            return glsr( Notice::class )->addWarning( __( 'There were no settings found to import.', 'site-reviews' ) );
211 211
         }
212
-        glsr(OptionManager::class)->set(glsr(OptionManager::class)->normalize($settings));
213
-        glsr(Notice::class)->addSuccess(__('Settings imported.', 'site-reviews'));
212
+        glsr( OptionManager::class )->set( glsr( OptionManager::class )->normalize( $settings ) );
213
+        glsr( Notice::class )->addSuccess( __( 'Settings imported.', 'site-reviews' ) );
214 214
     }
215 215
 
216 216
     /**
217 217
      * @param int $errorCode
218 218
      * @return string
219 219
      */
220
-    protected function getUploadError($errorCode)
220
+    protected function getUploadError( $errorCode )
221 221
     {
222 222
         $errors = [
223
-            UPLOAD_ERR_INI_SIZE => __('The uploaded file exceeds the upload_max_filesize directive in php.ini.', 'site-reviews'),
224
-            UPLOAD_ERR_FORM_SIZE => __('The uploaded file is too big.', 'site-reviews'),
225
-            UPLOAD_ERR_PARTIAL => __('The uploaded file was only partially uploaded.', 'site-reviews'),
226
-            UPLOAD_ERR_NO_FILE => __('No file was uploaded.', 'site-reviews'),
227
-            UPLOAD_ERR_NO_TMP_DIR => __('Missing a temporary folder.', 'site-reviews'),
228
-            UPLOAD_ERR_CANT_WRITE => __('Failed to write file to disk.', 'site-reviews'),
229
-            UPLOAD_ERR_EXTENSION => __('A PHP extension stopped the file upload.', 'site-reviews'),
223
+            UPLOAD_ERR_INI_SIZE => __( 'The uploaded file exceeds the upload_max_filesize directive in php.ini.', 'site-reviews' ),
224
+            UPLOAD_ERR_FORM_SIZE => __( 'The uploaded file is too big.', 'site-reviews' ),
225
+            UPLOAD_ERR_PARTIAL => __( 'The uploaded file was only partially uploaded.', 'site-reviews' ),
226
+            UPLOAD_ERR_NO_FILE => __( 'No file was uploaded.', 'site-reviews' ),
227
+            UPLOAD_ERR_NO_TMP_DIR => __( 'Missing a temporary folder.', 'site-reviews' ),
228
+            UPLOAD_ERR_CANT_WRITE => __( 'Failed to write file to disk.', 'site-reviews' ),
229
+            UPLOAD_ERR_EXTENSION => __( 'A PHP extension stopped the file upload.', 'site-reviews' ),
230 230
         ];
231
-        return glsr_get($errors, $errorCode, __('Unknown upload error.', 'site-reviews'));
231
+        return glsr_get( $errors, $errorCode, __( 'Unknown upload error.', 'site-reviews' ) );
232 232
     }
233 233
 }
Please login to merge, or discard this patch.
plugin/Controllers/Controller.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -13,15 +13,15 @@  discard block
 block discarded – undo
13 13
     /**
14 14
      * @return void
15 15
      */
16
-    public function download($filename, $content)
16
+    public function download( $filename, $content )
17 17
     {
18
-        if (!current_user_can(glsr()->constant('CAPABILITY'))) {
18
+        if( !current_user_can( glsr()->constant( 'CAPABILITY' ) ) ) {
19 19
             return;
20 20
         }
21 21
         nocache_headers();
22
-        header('Content-Type: text/plain');
23
-        header('Content-Disposition: attachment; filename="'.$filename.'"');
24
-        echo html_entity_decode($content);
22
+        header( 'Content-Type: text/plain' );
23
+        header( 'Content-Disposition: attachment; filename="'.$filename.'"' );
24
+        echo html_entity_decode( $content );
25 25
         exit;
26 26
     }
27 27
 
@@ -30,18 +30,18 @@  discard block
 block discarded – undo
30 30
      * @return mixed
31 31
      * @throws InvalidArgumentException
32 32
      */
33
-    public function execute($command)
33
+    public function execute( $command )
34 34
     {
35
-        $handlerClass = str_replace('Commands', 'Handlers', get_class($command));
36
-        if (!class_exists($handlerClass)) {
37
-            throw new InvalidArgumentException('Handler '.$handlerClass.' not found.');
35
+        $handlerClass = str_replace( 'Commands', 'Handlers', get_class( $command ) );
36
+        if( !class_exists( $handlerClass ) ) {
37
+            throw new InvalidArgumentException( 'Handler '.$handlerClass.' not found.' );
38 38
         }
39 39
         try {
40
-            return glsr($handlerClass)->handle($command);
41
-        } catch (Exception $e) {
42
-            status_header(400);
43
-            glsr(Notice::class)->addError(new WP_Error('site_reviews_error', $e->getMessage()));
44
-            glsr_log()->error($e->getMessage());
40
+            return glsr( $handlerClass )->handle( $command );
41
+        } catch( Exception $e ) {
42
+            status_header( 400 );
43
+            glsr( Notice::class )->addError( new WP_Error( 'site_reviews_error', $e->getMessage() ) );
44
+            glsr_log()->error( $e->getMessage() );
45 45
         }
46 46
     }
47 47
 
@@ -50,15 +50,15 @@  discard block
 block discarded – undo
50 50
      */
51 51
     protected function getPostId()
52 52
     {
53
-        return intval(filter_input(INPUT_GET, 'post'));
53
+        return intval( filter_input( INPUT_GET, 'post' ) );
54 54
     }
55 55
 
56 56
     /**
57 57
      * @param int $postId
58 58
      * @return bool
59 59
      */
60
-    protected function isReviewPostId($postId)
60
+    protected function isReviewPostId( $postId )
61 61
     {
62
-        return Application::POST_TYPE == get_post_field('post_type', $postId);
62
+        return Application::POST_TYPE == get_post_field( 'post_type', $postId );
63 63
     }
64 64
 }
Please login to merge, or discard this patch.
plugin/Controllers/RestReviewController.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 {
15 15
     public function __construct()
16 16
     {
17
-        $this->meta = new WP_REST_Post_Meta_Fields(Application::POST_TYPE);
17
+        $this->meta = new WP_REST_Post_Meta_Fields( Application::POST_TYPE );
18 18
         $this->namespace = Application::ID.'/v1';
19 19
         $this->post_type = Application::POST_TYPE;
20 20
         $this->rest_base = 'reviews';
@@ -29,9 +29,9 @@  discard block
 block discarded – undo
29 29
         //  ['callback' => [$this, 'createReview'], 'methods' => Server::CREATABLE],
30 30
         //  ['callback' => [$this, 'getReviews'], 'methods' => Server::READABLE],
31 31
         // ]);
32
-        register_rest_route($this->namespace, '/types', [
32
+        register_rest_route( $this->namespace, '/types', [
33 33
             ['callback' => [$this, 'getReviewTypes'], 'methods' => Server::READABLE],
34
-        ]);
34
+        ] );
35 35
     }
36 36
 
37 37
     /**
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     public function createReview()
41 41
     {
42 42
         $response = [];
43
-        return rest_ensure_response($response);
43
+        return rest_ensure_response( $response );
44 44
     }
45 45
 
46 46
     /**
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     public function getReviews()
50 50
     {
51 51
         $response = [];
52
-        return rest_ensure_response($response);
52
+        return rest_ensure_response( $response );
53 53
     }
54 54
 
55 55
     /**
@@ -58,12 +58,12 @@  discard block
 block discarded – undo
58 58
     public function getReviewTypes()
59 59
     {
60 60
         $response = [];
61
-        foreach (glsr()->reviewTypes as $slug => $name) {
61
+        foreach( glsr()->reviewTypes as $slug => $name ) {
62 62
             $response[] = [
63 63
                 'name' => $name,
64 64
                 'slug' => $slug,
65 65
             ];
66 66
         }
67
-        return rest_ensure_response($response);
67
+        return rest_ensure_response( $response );
68 68
     }
69 69
 }
Please login to merge, or discard this patch.
plugin/Controllers/TaxonomyController.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -35,14 +35,14 @@  discard block
 block discarded – undo
35 35
      */
36 36
     public function renderTaxonomyFilter()
37 37
     {
38
-        if (!is_object_in_taxonomy(glsr_current_screen()->post_type, Application::TAXONOMY)) {
38
+        if( !is_object_in_taxonomy( glsr_current_screen()->post_type, Application::TAXONOMY ) ) {
39 39
             return;
40 40
         }
41
-        echo glsr(Builder::class)->label(__('Filter by category', 'site-reviews'), [
41
+        echo glsr( Builder::class )->label( __( 'Filter by category', 'site-reviews' ), [
42 42
             'class' => 'screen-reader-text',
43 43
             'for' => Application::TAXONOMY,
44
-        ]);
45
-        wp_dropdown_categories([
44
+        ] );
45
+        wp_dropdown_categories( [
46 46
             'depth' => 3,
47 47
             'hide_empty' => true,
48 48
             'hide_if_empty' => true,
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
             'show_option_all' => $this->getShowOptionAll(),
55 55
             'taxonomy' => Application::TAXONOMY,
56 56
             'value_field' => 'slug',
57
-        ]);
57
+        ] );
58 58
     }
59 59
 
60 60
     /**
@@ -67,17 +67,17 @@  discard block
 block discarded – undo
67 67
      * @return void
68 68
      * @action set_object_terms
69 69
      */
70
-    public function restrictTermSelection($postId, $terms, $newTTIds, $taxonomy, $append, $oldTTIds)
70
+    public function restrictTermSelection( $postId, $terms, $newTTIds, $taxonomy, $append, $oldTTIds )
71 71
     {
72
-        if (Application::TAXONOMY != $taxonomy || count($newTTIds) <= 1) {
72
+        if( Application::TAXONOMY != $taxonomy || count( $newTTIds ) <= 1 ) {
73 73
             return;
74 74
         }
75
-        $diff = array_diff($newTTIds, $oldTTIds);
76
-        if (empty($newTerm = array_shift($diff))) {
77
-            $newTerm = array_shift($newTTIds);
75
+        $diff = array_diff( $newTTIds, $oldTTIds );
76
+        if( empty($newTerm = array_shift( $diff )) ) {
77
+            $newTerm = array_shift( $newTTIds );
78 78
         }
79
-        if ($newTerm) {
80
-            wp_set_object_terms($postId, intval($newTerm), $taxonomy);
79
+        if( $newTerm ) {
80
+            wp_set_object_terms( $postId, intval( $newTerm ), $taxonomy );
81 81
         }
82 82
     }
83 83
 
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
     protected function getSelected()
88 88
     {
89 89
         global $wp_query;
90
-        return glsr_get($wp_query->query, Application::TAXONOMY);
90
+        return glsr_get( $wp_query->query, Application::TAXONOMY );
91 91
     }
92 92
 
93 93
     /**
@@ -95,9 +95,9 @@  discard block
 block discarded – undo
95 95
      */
96 96
     protected function getShowOptionAll()
97 97
     {
98
-        $taxonomy = get_taxonomy(Application::TAXONOMY);
98
+        $taxonomy = get_taxonomy( Application::TAXONOMY );
99 99
         return $taxonomy
100
-            ? ucfirst(strtolower($taxonomy->labels->all_items))
100
+            ? ucfirst( strtolower( $taxonomy->labels->all_items ) )
101 101
             : '';
102 102
     }
103 103
 }
Please login to merge, or discard this patch.