Passed
Push — master ( ff717e...ba0f3b )
by Paul
08:41 queued 04:33
created
plugin/Handlers/EnqueuePublicAssets.php 2 patches
Indentation   +136 added lines, -136 removed lines patch added patch discarded remove patch
@@ -9,148 +9,148 @@
 block discarded – undo
9 9
 
10 10
 class EnqueuePublicAssets
11 11
 {
12
-    /**
13
-     * @return void
14
-     */
15
-    public function handle()
16
-    {
17
-        $this->enqueueAssets();
18
-        $this->enqueuePolyfillService();
19
-        $this->enqueueRecaptchaScript();
20
-        $this->inlineScript();
21
-        $this->inlineStyles();
22
-    }
12
+	/**
13
+	 * @return void
14
+	 */
15
+	public function handle()
16
+	{
17
+		$this->enqueueAssets();
18
+		$this->enqueuePolyfillService();
19
+		$this->enqueueRecaptchaScript();
20
+		$this->inlineScript();
21
+		$this->inlineStyles();
22
+	}
23 23
 
24
-    /**
25
-     * @return void
26
-     */
27
-    public function enqueueAssets()
28
-    {
29
-        if (apply_filters('site-reviews/assets/css', true)) {
30
-            wp_enqueue_style(
31
-                Application::ID,
32
-                $this->getStylesheet(),
33
-                [],
34
-                glsr()->version
35
-            );
36
-        }
37
-        if (apply_filters('site-reviews/assets/js', true)) {
38
-            $dependencies = apply_filters('site-reviews/assets/polyfill', true)
39
-                ? [Application::ID.'/polyfill']
40
-                : [];
41
-            $dependencies = apply_filters('site-reviews/enqueue/public/dependencies', $dependencies);
42
-            wp_enqueue_script(
43
-                Application::ID,
44
-                glsr()->url('assets/scripts/'.Application::ID.'.js'),
45
-                $dependencies,
46
-                glsr()->version,
47
-                true
48
-            );
49
-        }
50
-    }
24
+	/**
25
+	 * @return void
26
+	 */
27
+	public function enqueueAssets()
28
+	{
29
+		if (apply_filters('site-reviews/assets/css', true)) {
30
+			wp_enqueue_style(
31
+				Application::ID,
32
+				$this->getStylesheet(),
33
+				[],
34
+				glsr()->version
35
+			);
36
+		}
37
+		if (apply_filters('site-reviews/assets/js', true)) {
38
+			$dependencies = apply_filters('site-reviews/assets/polyfill', true)
39
+				? [Application::ID.'/polyfill']
40
+				: [];
41
+			$dependencies = apply_filters('site-reviews/enqueue/public/dependencies', $dependencies);
42
+			wp_enqueue_script(
43
+				Application::ID,
44
+				glsr()->url('assets/scripts/'.Application::ID.'.js'),
45
+				$dependencies,
46
+				glsr()->version,
47
+				true
48
+			);
49
+		}
50
+	}
51 51
 
52
-    /**
53
-     * @return void
54
-     */
55
-    public function enqueuePolyfillService()
56
-    {
57
-        if (!apply_filters('site-reviews/assets/polyfill', true)) {
58
-            return;
59
-        }
60
-        wp_enqueue_script(Application::ID.'/polyfill', add_query_arg([
61
-            'features' => 'CustomEvent,Element.prototype.closest,Element.prototype.dataset,Event,XMLHttpRequest,MutationObserver',
62
-            'flags' => 'gated',
63
-        ], 'https://polyfill.io/v3/polyfill.min.js'));
64
-    }
52
+	/**
53
+	 * @return void
54
+	 */
55
+	public function enqueuePolyfillService()
56
+	{
57
+		if (!apply_filters('site-reviews/assets/polyfill', true)) {
58
+			return;
59
+		}
60
+		wp_enqueue_script(Application::ID.'/polyfill', add_query_arg([
61
+			'features' => 'CustomEvent,Element.prototype.closest,Element.prototype.dataset,Event,XMLHttpRequest,MutationObserver',
62
+			'flags' => 'gated',
63
+		], 'https://polyfill.io/v3/polyfill.min.js'));
64
+	}
65 65
 
66
-    /**
67
-     * @return void
68
-     */
69
-    public function enqueueRecaptchaScript()
70
-    {
71
-        // wpforms-recaptcha
72
-        // google-recaptcha
73
-        // nf-google-recaptcha
74
-        if (!glsr(OptionManager::class)->isRecaptchaEnabled()) {
75
-            return;
76
-        }
77
-        $language = apply_filters('site-reviews/recaptcha/language', get_locale());
78
-        wp_enqueue_script(Application::ID.'/google-recaptcha', add_query_arg([
79
-            'hl' => $language,
80
-            'render' => 'explicit',
81
-        ], 'https://www.google.com/recaptcha/api.js'));
82
-    }
66
+	/**
67
+	 * @return void
68
+	 */
69
+	public function enqueueRecaptchaScript()
70
+	{
71
+		// wpforms-recaptcha
72
+		// google-recaptcha
73
+		// nf-google-recaptcha
74
+		if (!glsr(OptionManager::class)->isRecaptchaEnabled()) {
75
+			return;
76
+		}
77
+		$language = apply_filters('site-reviews/recaptcha/language', get_locale());
78
+		wp_enqueue_script(Application::ID.'/google-recaptcha', add_query_arg([
79
+			'hl' => $language,
80
+			'render' => 'explicit',
81
+		], 'https://www.google.com/recaptcha/api.js'));
82
+	}
83 83
 
84
-    /**
85
-     * @return void
86
-     */
87
-    public function inlineScript()
88
-    {
89
-        $variables = [
90
-            'action' => Application::PREFIX.'action',
91
-            'ajaxpagination' => $this->getFixedSelectorsForPagination(),
92
-            'ajaxurl' => admin_url('admin-ajax.php'),
93
-            'nameprefix' => Application::ID,
94
-            'validationconfig' => glsr(Style::class)->validation,
95
-            'validationstrings' => glsr(ValidationStringsDefaults::class)->defaults(),
96
-        ];
97
-        $variables = apply_filters('site-reviews/enqueue/public/localize', $variables);
98
-        wp_add_inline_script(Application::ID, $this->buildInlineScript($variables), 'before');
99
-    }
84
+	/**
85
+	 * @return void
86
+	 */
87
+	public function inlineScript()
88
+	{
89
+		$variables = [
90
+			'action' => Application::PREFIX.'action',
91
+			'ajaxpagination' => $this->getFixedSelectorsForPagination(),
92
+			'ajaxurl' => admin_url('admin-ajax.php'),
93
+			'nameprefix' => Application::ID,
94
+			'validationconfig' => glsr(Style::class)->validation,
95
+			'validationstrings' => glsr(ValidationStringsDefaults::class)->defaults(),
96
+		];
97
+		$variables = apply_filters('site-reviews/enqueue/public/localize', $variables);
98
+		wp_add_inline_script(Application::ID, $this->buildInlineScript($variables), 'before');
99
+	}
100 100
 
101
-    /**
102
-     * @return void
103
-     */
104
-    public function inlineStyles()
105
-    {
106
-        $inlineStylesheetPath = glsr()->path('assets/styles/inline-styles.css');
107
-        if (!apply_filters('site-reviews/assets/css', true)) {
108
-            return;
109
-        }
110
-        if (!file_exists($inlineStylesheetPath)) {
111
-            glsr_log()->error('Inline stylesheet is missing: '.$inlineStylesheetPath);
112
-            return;
113
-        }
114
-        $inlineStylesheetValues = glsr()->config('inline-styles');
115
-        $stylesheet = str_replace(
116
-            array_keys($inlineStylesheetValues),
117
-            array_values($inlineStylesheetValues),
118
-            file_get_contents($inlineStylesheetPath)
119
-        );
120
-        wp_add_inline_style(Application::ID, $stylesheet);
121
-    }
101
+	/**
102
+	 * @return void
103
+	 */
104
+	public function inlineStyles()
105
+	{
106
+		$inlineStylesheetPath = glsr()->path('assets/styles/inline-styles.css');
107
+		if (!apply_filters('site-reviews/assets/css', true)) {
108
+			return;
109
+		}
110
+		if (!file_exists($inlineStylesheetPath)) {
111
+			glsr_log()->error('Inline stylesheet is missing: '.$inlineStylesheetPath);
112
+			return;
113
+		}
114
+		$inlineStylesheetValues = glsr()->config('inline-styles');
115
+		$stylesheet = str_replace(
116
+			array_keys($inlineStylesheetValues),
117
+			array_values($inlineStylesheetValues),
118
+			file_get_contents($inlineStylesheetPath)
119
+		);
120
+		wp_add_inline_style(Application::ID, $stylesheet);
121
+	}
122 122
 
123
-    /**
124
-     * @return string
125
-     */
126
-    protected function buildInlineScript(array $variables)
127
-    {
128
-        $script = 'window.hasOwnProperty("GLSR")||(window.GLSR={});';
129
-        foreach ($variables as $key => $value) {
130
-            $script.= sprintf('GLSR.%s=%s;', $key, json_encode($value, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
131
-        }
132
-        $pattern = '/\"([^ \-\"]+)\"(:[{\[\"])/'; // removes unnecessary quotes surrounding object keys
133
-        $optimizedScript = preg_replace($pattern, '$1$2', $script);
134
-        return apply_filters('site-reviews/enqueue/public/inline-script', $optimizedScript, $script, $variables);
135
-    }
123
+	/**
124
+	 * @return string
125
+	 */
126
+	protected function buildInlineScript(array $variables)
127
+	{
128
+		$script = 'window.hasOwnProperty("GLSR")||(window.GLSR={});';
129
+		foreach ($variables as $key => $value) {
130
+			$script.= sprintf('GLSR.%s=%s;', $key, json_encode($value, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
131
+		}
132
+		$pattern = '/\"([^ \-\"]+)\"(:[{\[\"])/'; // removes unnecessary quotes surrounding object keys
133
+		$optimizedScript = preg_replace($pattern, '$1$2', $script);
134
+		return apply_filters('site-reviews/enqueue/public/inline-script', $optimizedScript, $script, $variables);
135
+	}
136 136
 
137
-    /**
138
-     * @return array
139
-     */
140
-    protected function getFixedSelectorsForPagination()
141
-    {
142
-        $selectors = ['#wpadminbar', '.site-navigation-fixed'];
143
-        return apply_filters('site-reviews/enqueue/public/localize/ajax-pagination', $selectors);
144
-    }
137
+	/**
138
+	 * @return array
139
+	 */
140
+	protected function getFixedSelectorsForPagination()
141
+	{
142
+		$selectors = ['#wpadminbar', '.site-navigation-fixed'];
143
+		return apply_filters('site-reviews/enqueue/public/localize/ajax-pagination', $selectors);
144
+	}
145 145
 
146
-    /**
147
-     * @return string
148
-     */
149
-    protected function getStylesheet()
150
-    {
151
-        $currentStyle = glsr(Style::class)->style;
152
-        return file_exists(glsr()->path('assets/styles/custom/'.$currentStyle.'.css'))
153
-            ? glsr()->url('assets/styles/custom/'.$currentStyle.'.css')
154
-            : glsr()->url('assets/styles/'.Application::ID.'.css');
155
-    }
146
+	/**
147
+	 * @return string
148
+	 */
149
+	protected function getStylesheet()
150
+	{
151
+		$currentStyle = glsr(Style::class)->style;
152
+		return file_exists(glsr()->path('assets/styles/custom/'.$currentStyle.'.css'))
153
+			? glsr()->url('assets/styles/custom/'.$currentStyle.'.css')
154
+			: glsr()->url('assets/styles/'.Application::ID.'.css');
155
+	}
156 156
 }
Please login to merge, or discard this patch.
Spacing   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      */
27 27
     public function enqueueAssets()
28 28
     {
29
-        if (apply_filters('site-reviews/assets/css', true)) {
29
+        if( apply_filters( 'site-reviews/assets/css', true ) ) {
30 30
             wp_enqueue_style(
31 31
                 Application::ID,
32 32
                 $this->getStylesheet(),
@@ -34,14 +34,14 @@  discard block
 block discarded – undo
34 34
                 glsr()->version
35 35
             );
36 36
         }
37
-        if (apply_filters('site-reviews/assets/js', true)) {
38
-            $dependencies = apply_filters('site-reviews/assets/polyfill', true)
37
+        if( apply_filters( 'site-reviews/assets/js', true ) ) {
38
+            $dependencies = apply_filters( 'site-reviews/assets/polyfill', true )
39 39
                 ? [Application::ID.'/polyfill']
40 40
                 : [];
41
-            $dependencies = apply_filters('site-reviews/enqueue/public/dependencies', $dependencies);
41
+            $dependencies = apply_filters( 'site-reviews/enqueue/public/dependencies', $dependencies );
42 42
             wp_enqueue_script(
43 43
                 Application::ID,
44
-                glsr()->url('assets/scripts/'.Application::ID.'.js'),
44
+                glsr()->url( 'assets/scripts/'.Application::ID.'.js' ),
45 45
                 $dependencies,
46 46
                 glsr()->version,
47 47
                 true
@@ -54,13 +54,13 @@  discard block
 block discarded – undo
54 54
      */
55 55
     public function enqueuePolyfillService()
56 56
     {
57
-        if (!apply_filters('site-reviews/assets/polyfill', true)) {
57
+        if( !apply_filters( 'site-reviews/assets/polyfill', true ) ) {
58 58
             return;
59 59
         }
60
-        wp_enqueue_script(Application::ID.'/polyfill', add_query_arg([
60
+        wp_enqueue_script( Application::ID.'/polyfill', add_query_arg( [
61 61
             'features' => 'CustomEvent,Element.prototype.closest,Element.prototype.dataset,Event,XMLHttpRequest,MutationObserver',
62 62
             'flags' => 'gated',
63
-        ], 'https://polyfill.io/v3/polyfill.min.js'));
63
+        ], 'https://polyfill.io/v3/polyfill.min.js' ) );
64 64
     }
65 65
 
66 66
     /**
@@ -71,14 +71,14 @@  discard block
 block discarded – undo
71 71
         // wpforms-recaptcha
72 72
         // google-recaptcha
73 73
         // nf-google-recaptcha
74
-        if (!glsr(OptionManager::class)->isRecaptchaEnabled()) {
74
+        if( !glsr( OptionManager::class )->isRecaptchaEnabled() ) {
75 75
             return;
76 76
         }
77
-        $language = apply_filters('site-reviews/recaptcha/language', get_locale());
78
-        wp_enqueue_script(Application::ID.'/google-recaptcha', add_query_arg([
77
+        $language = apply_filters( 'site-reviews/recaptcha/language', get_locale() );
78
+        wp_enqueue_script( Application::ID.'/google-recaptcha', add_query_arg( [
79 79
             'hl' => $language,
80 80
             'render' => 'explicit',
81
-        ], 'https://www.google.com/recaptcha/api.js'));
81
+        ], 'https://www.google.com/recaptcha/api.js' ) );
82 82
     }
83 83
 
84 84
     /**
@@ -89,13 +89,13 @@  discard block
 block discarded – undo
89 89
         $variables = [
90 90
             'action' => Application::PREFIX.'action',
91 91
             'ajaxpagination' => $this->getFixedSelectorsForPagination(),
92
-            'ajaxurl' => admin_url('admin-ajax.php'),
92
+            'ajaxurl' => admin_url( 'admin-ajax.php' ),
93 93
             'nameprefix' => Application::ID,
94
-            'validationconfig' => glsr(Style::class)->validation,
95
-            'validationstrings' => glsr(ValidationStringsDefaults::class)->defaults(),
94
+            'validationconfig' => glsr( Style::class )->validation,
95
+            'validationstrings' => glsr( ValidationStringsDefaults::class )->defaults(),
96 96
         ];
97
-        $variables = apply_filters('site-reviews/enqueue/public/localize', $variables);
98
-        wp_add_inline_script(Application::ID, $this->buildInlineScript($variables), 'before');
97
+        $variables = apply_filters( 'site-reviews/enqueue/public/localize', $variables );
98
+        wp_add_inline_script( Application::ID, $this->buildInlineScript( $variables ), 'before' );
99 99
     }
100 100
 
101 101
     /**
@@ -103,35 +103,35 @@  discard block
 block discarded – undo
103 103
      */
104 104
     public function inlineStyles()
105 105
     {
106
-        $inlineStylesheetPath = glsr()->path('assets/styles/inline-styles.css');
107
-        if (!apply_filters('site-reviews/assets/css', true)) {
106
+        $inlineStylesheetPath = glsr()->path( 'assets/styles/inline-styles.css' );
107
+        if( !apply_filters( 'site-reviews/assets/css', true ) ) {
108 108
             return;
109 109
         }
110
-        if (!file_exists($inlineStylesheetPath)) {
111
-            glsr_log()->error('Inline stylesheet is missing: '.$inlineStylesheetPath);
110
+        if( !file_exists( $inlineStylesheetPath ) ) {
111
+            glsr_log()->error( 'Inline stylesheet is missing: '.$inlineStylesheetPath );
112 112
             return;
113 113
         }
114
-        $inlineStylesheetValues = glsr()->config('inline-styles');
114
+        $inlineStylesheetValues = glsr()->config( 'inline-styles' );
115 115
         $stylesheet = str_replace(
116
-            array_keys($inlineStylesheetValues),
117
-            array_values($inlineStylesheetValues),
118
-            file_get_contents($inlineStylesheetPath)
116
+            array_keys( $inlineStylesheetValues ),
117
+            array_values( $inlineStylesheetValues ),
118
+            file_get_contents( $inlineStylesheetPath )
119 119
         );
120
-        wp_add_inline_style(Application::ID, $stylesheet);
120
+        wp_add_inline_style( Application::ID, $stylesheet );
121 121
     }
122 122
 
123 123
     /**
124 124
      * @return string
125 125
      */
126
-    protected function buildInlineScript(array $variables)
126
+    protected function buildInlineScript( array $variables )
127 127
     {
128 128
         $script = 'window.hasOwnProperty("GLSR")||(window.GLSR={});';
129
-        foreach ($variables as $key => $value) {
130
-            $script.= sprintf('GLSR.%s=%s;', $key, json_encode($value, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
129
+        foreach( $variables as $key => $value ) {
130
+            $script .= sprintf( 'GLSR.%s=%s;', $key, json_encode( $value, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE ) );
131 131
         }
132 132
         $pattern = '/\"([^ \-\"]+)\"(:[{\[\"])/'; // removes unnecessary quotes surrounding object keys
133
-        $optimizedScript = preg_replace($pattern, '$1$2', $script);
134
-        return apply_filters('site-reviews/enqueue/public/inline-script', $optimizedScript, $script, $variables);
133
+        $optimizedScript = preg_replace( $pattern, '$1$2', $script );
134
+        return apply_filters( 'site-reviews/enqueue/public/inline-script', $optimizedScript, $script, $variables );
135 135
     }
136 136
 
137 137
     /**
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
     protected function getFixedSelectorsForPagination()
141 141
     {
142 142
         $selectors = ['#wpadminbar', '.site-navigation-fixed'];
143
-        return apply_filters('site-reviews/enqueue/public/localize/ajax-pagination', $selectors);
143
+        return apply_filters( 'site-reviews/enqueue/public/localize/ajax-pagination', $selectors );
144 144
     }
145 145
 
146 146
     /**
@@ -148,9 +148,9 @@  discard block
 block discarded – undo
148 148
      */
149 149
     protected function getStylesheet()
150 150
     {
151
-        $currentStyle = glsr(Style::class)->style;
152
-        return file_exists(glsr()->path('assets/styles/custom/'.$currentStyle.'.css'))
153
-            ? glsr()->url('assets/styles/custom/'.$currentStyle.'.css')
154
-            : glsr()->url('assets/styles/'.Application::ID.'.css');
151
+        $currentStyle = glsr( Style::class )->style;
152
+        return file_exists( glsr()->path( 'assets/styles/custom/'.$currentStyle.'.css' ) )
153
+            ? glsr()->url( 'assets/styles/custom/'.$currentStyle.'.css' )
154
+            : glsr()->url( 'assets/styles/'.Application::ID.'.css' );
155 155
     }
156 156
 }
Please login to merge, or discard this patch.
autoload.php 2 patches
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -5,23 +5,23 @@
 block discarded – undo
5 5
 require_once ABSPATH.WPINC.'/class-phpass.php';
6 6
 
7 7
 spl_autoload_register(function ($className) {
8
-    $namespaces = [
9
-        'GeminiLabs\\SiteReviews\\' => __DIR__.'/plugin/',
10
-        'GeminiLabs\\SiteReviews\\Tests\\' => __DIR__.'/tests/',
11
-        'GeminiLabs\\Sepia\\PoParser\\' => __DIR__.'/vendors/sepia/po-parser/',
12
-        'GeminiLabs\\Sinergi\\BrowserDetector\\' => __DIR__.'/vendors/sinergi/browser-detector/',
13
-        'GeminiLabs\\Vectorface\\Whip\\' => __DIR__.'/vendors/vectorface/whip/',
14
-    ];
15
-    foreach ($namespaces as $prefix => $baseDir) {
16
-        $len = strlen($prefix);
17
-        if (0 !== strncmp($prefix, $className, $len)) {
18
-            continue;
19
-        }
20
-        $file = $baseDir.str_replace('\\', '/', substr($className, $len)).'.php';
21
-        if (!file_exists($file)) {
22
-            continue;
23
-        }
24
-        require $file;
25
-        break;
26
-    }
8
+	$namespaces = [
9
+		'GeminiLabs\\SiteReviews\\' => __DIR__.'/plugin/',
10
+		'GeminiLabs\\SiteReviews\\Tests\\' => __DIR__.'/tests/',
11
+		'GeminiLabs\\Sepia\\PoParser\\' => __DIR__.'/vendors/sepia/po-parser/',
12
+		'GeminiLabs\\Sinergi\\BrowserDetector\\' => __DIR__.'/vendors/sinergi/browser-detector/',
13
+		'GeminiLabs\\Vectorface\\Whip\\' => __DIR__.'/vendors/vectorface/whip/',
14
+	];
15
+	foreach ($namespaces as $prefix => $baseDir) {
16
+		$len = strlen($prefix);
17
+		if (0 !== strncmp($prefix, $className, $len)) {
18
+			continue;
19
+		}
20
+		$file = $baseDir.str_replace('\\', '/', substr($className, $len)).'.php';
21
+		if (!file_exists($file)) {
22
+			continue;
23
+		}
24
+		require $file;
25
+		break;
26
+	}
27 27
 });
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-defined('WPINC') || die;
3
+defined( 'WPINC' ) || die;
4 4
 
5 5
 require_once ABSPATH.WPINC.'/class-phpass.php';
6 6
 
7
-spl_autoload_register(function ($className) {
7
+spl_autoload_register( function( $className ) {
8 8
     $namespaces = [
9 9
         'GeminiLabs\\SiteReviews\\' => __DIR__.'/plugin/',
10 10
         'GeminiLabs\\SiteReviews\\Tests\\' => __DIR__.'/tests/',
@@ -12,13 +12,13 @@  discard block
 block discarded – undo
12 12
         'GeminiLabs\\Sinergi\\BrowserDetector\\' => __DIR__.'/vendors/sinergi/browser-detector/',
13 13
         'GeminiLabs\\Vectorface\\Whip\\' => __DIR__.'/vendors/vectorface/whip/',
14 14
     ];
15
-    foreach ($namespaces as $prefix => $baseDir) {
16
-        $len = strlen($prefix);
17
-        if (0 !== strncmp($prefix, $className, $len)) {
15
+    foreach( $namespaces as $prefix => $baseDir ) {
16
+        $len = strlen( $prefix );
17
+        if( 0 !== strncmp( $prefix, $className, $len ) ) {
18 18
             continue;
19 19
         }
20
-        $file = $baseDir.str_replace('\\', '/', substr($className, $len)).'.php';
21
-        if (!file_exists($file)) {
20
+        $file = $baseDir.str_replace( '\\', '/', substr( $className, $len ) ).'.php';
21
+        if( !file_exists( $file ) ) {
22 22
             continue;
23 23
         }
24 24
         require $file;
Please login to merge, or discard this patch.
compatibility.php 2 patches
Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -8,10 +8,10 @@  discard block
 block discarded – undo
8 8
  * @see https://www.elegantthemes.com/gallery/divi/
9 9
  */
10 10
 add_action('site-reviews/customize/divi', function ($instance) {
11
-    if ('label' != $instance->tag || 'checkbox' != $instance->args['type']) {
12
-        return;
13
-    }
14
-    $instance->args['text'] = '<i></i>'.$instance->args['text'];
11
+	if ('label' != $instance->tag || 'checkbox' != $instance->args['type']) {
12
+		return;
13
+	}
14
+	$instance->args['text'] = '<i></i>'.$instance->args['text'];
15 15
 });
16 16
 
17 17
 /*
@@ -22,14 +22,14 @@  discard block
 block discarded – undo
22 22
  * @see https://wordpress.org/plugins/wp-super-cache/
23 23
  */
24 24
 add_action('site-reviews/review/created', function ($review, $request) {
25
-    if (!function_exists('wp_cache_post_change')) {
26
-        return;
27
-    }
28
-    wp_cache_post_change($request->post_id);
29
-    if (empty($review->assigned_to) || $review->assigned_to == $request->post_id) {
30
-        return;
31
-    }
32
-    wp_cache_post_change($review->assigned_to);
25
+	if (!function_exists('wp_cache_post_change')) {
26
+		return;
27
+	}
28
+	wp_cache_post_change($request->post_id);
29
+	if (empty($review->assigned_to) || $review->assigned_to == $request->post_id) {
30
+		return;
31
+	}
32
+	wp_cache_post_change($review->assigned_to);
33 33
 }, 10, 2);
34 34
 
35 35
 /*
@@ -38,8 +38,8 @@  discard block
 block discarded – undo
38 38
  * @see https://wordpress.org/plugins/speed-booster-pack/
39 39
  */
40 40
 add_filter('sbp_exclude_defer_scripts', function ($scriptHandles) {
41
-    $scriptHandles[] = 'site-reviews/google-recaptcha';
42
-    return array_keys(array_flip($scriptHandles));
41
+	$scriptHandles[] = 'site-reviews/google-recaptcha';
42
+	return array_keys(array_flip($scriptHandles));
43 43
 });
44 44
 
45 45
 /*
@@ -49,13 +49,13 @@  discard block
 block discarded – undo
49 49
  * @see https://searchandfilter.com/
50 50
  */
51 51
 add_filter('sf_edit_query_args', function ($query) {
52
-    if (!empty($query['meta_key']) && '_glsr_ranking' == $query['meta_key']) {
53
-        unset($query['meta_key']);
54
-        $query['meta_query'] = [
55
-            'relation' => 'OR',
56
-            ['key' => '_glsr_ranking', 'compare' => 'NOT EXISTS'], // this comes first!
57
-            ['key' => '_glsr_ranking', 'compare' => 'EXISTS'],
58
-        ];
59
-    }
60
-    return $query;
52
+	if (!empty($query['meta_key']) && '_glsr_ranking' == $query['meta_key']) {
53
+		unset($query['meta_key']);
54
+		$query['meta_query'] = [
55
+			'relation' => 'OR',
56
+			['key' => '_glsr_ranking', 'compare' => 'NOT EXISTS'], // this comes first!
57
+			['key' => '_glsr_ranking', 'compare' => 'EXISTS'],
58
+		];
59
+	}
60
+	return $query;
61 61
 }, 20);
Please login to merge, or discard this patch.
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -1,14 +1,14 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-defined('WPINC') || die;
3
+defined( 'WPINC' ) || die;
4 4
 
5 5
 /*
6 6
  * @param \GeminiLabs\SiteReviews\Modules\Html\Builder $instance
7 7
  * @return void
8 8
  * @see https://www.elegantthemes.com/gallery/divi/
9 9
  */
10
-add_action('site-reviews/customize/divi', function ($instance) {
11
-    if ('label' != $instance->tag || 'checkbox' != $instance->args['type']) {
10
+add_action( 'site-reviews/customize/divi', function( $instance ) {
11
+    if( 'label' != $instance->tag || 'checkbox' != $instance->args['type'] ) {
12 12
         return;
13 13
     }
14 14
     $instance->args['text'] = '<i></i>'.$instance->args['text'];
@@ -21,25 +21,25 @@  discard block
 block discarded – undo
21 21
  * @return void
22 22
  * @see https://wordpress.org/plugins/wp-super-cache/
23 23
  */
24
-add_action('site-reviews/review/created', function ($review, $request) {
25
-    if (!function_exists('wp_cache_post_change')) {
24
+add_action( 'site-reviews/review/created', function( $review, $request ) {
25
+    if( !function_exists( 'wp_cache_post_change' ) ) {
26 26
         return;
27 27
     }
28
-    wp_cache_post_change($request->post_id);
29
-    if (empty($review->assigned_to) || $review->assigned_to == $request->post_id) {
28
+    wp_cache_post_change( $request->post_id );
29
+    if( empty($review->assigned_to) || $review->assigned_to == $request->post_id ) {
30 30
         return;
31 31
     }
32
-    wp_cache_post_change($review->assigned_to);
33
-}, 10, 2);
32
+    wp_cache_post_change( $review->assigned_to );
33
+}, 10, 2 );
34 34
 
35 35
 /*
36 36
  * @param array $scriptHandles
37 37
  * @return array
38 38
  * @see https://wordpress.org/plugins/speed-booster-pack/
39 39
  */
40
-add_filter('sbp_exclude_defer_scripts', function ($scriptHandles) {
40
+add_filter( 'sbp_exclude_defer_scripts', function( $scriptHandles ) {
41 41
     $scriptHandles[] = 'site-reviews/google-recaptcha';
42
-    return array_keys(array_flip($scriptHandles));
42
+    return array_keys( array_flip( $scriptHandles ) );
43 43
 });
44 44
 
45 45
 /*
@@ -48,8 +48,8 @@  discard block
 block discarded – undo
48 48
  * @return array
49 49
  * @see https://searchandfilter.com/
50 50
  */
51
-add_filter('sf_edit_query_args', function ($query) {
52
-    if (!empty($query['meta_key']) && '_glsr_ranking' == $query['meta_key']) {
51
+add_filter( 'sf_edit_query_args', function( $query ) {
52
+    if( !empty($query['meta_key']) && '_glsr_ranking' == $query['meta_key'] ) {
53 53
         unset($query['meta_key']);
54 54
         $query['meta_query'] = [
55 55
             'relation' => 'OR',
@@ -58,4 +58,4 @@  discard block
 block discarded – undo
58 58
         ];
59 59
     }
60 60
     return $query;
61
-}, 20);
61
+}, 20 );
Please login to merge, or discard this patch.
helpers.php 3 patches
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,8 @@
 block discarded – undo
100 100
     if (1 == count($vars)) {
101 101
         $value = htmlspecialchars(print_r($vars[0], true), ENT_QUOTES, 'UTF-8');
102 102
         printf('<div class="glsr-debug"><pre>%s</pre></div>', $value);
103
-    } else {
103
+    }
104
+    else {
104 105
         echo '<div class="glsr-debug-group">';
105 106
         foreach ($vars as $var) {
106 107
             glsr_debug($var);
Please login to merge, or discard this patch.
Indentation   +74 added lines, -74 removed lines patch added patch discarded remove patch
@@ -9,25 +9,25 @@  discard block
 block discarded – undo
9 9
  * @return mixed
10 10
  */
11 11
 add_filter('plugins_loaded', function () {
12
-    $hooks = array(
13
-        'glsr_calculate_ratings' => 1,
14
-        'glsr_create_review' => 2,
15
-        'glsr_debug' => 10,
16
-        'glsr_get' => 4,
17
-        'glsr_get_option' => 4,
18
-        'glsr_get_options' => 1,
19
-        'glsr_get_review' => 2,
20
-        'glsr_get_reviews' => 2,
21
-        'glsr_log' => 3,
22
-        'glsr_star_rating' => 2,
23
-    );
24
-    foreach ($hooks as $function => $acceptedArgs) {
25
-        add_filter($function, function () use ($function) {
26
-            $args = func_get_args();
27
-            array_shift($args); // remove the fallback value
28
-            return call_user_func_array($function, $args);
29
-        }, 10, $acceptedArgs);
30
-    }
12
+	$hooks = array(
13
+		'glsr_calculate_ratings' => 1,
14
+		'glsr_create_review' => 2,
15
+		'glsr_debug' => 10,
16
+		'glsr_get' => 4,
17
+		'glsr_get_option' => 4,
18
+		'glsr_get_options' => 1,
19
+		'glsr_get_review' => 2,
20
+		'glsr_get_reviews' => 2,
21
+		'glsr_log' => 3,
22
+		'glsr_star_rating' => 2,
23
+	);
24
+	foreach ($hooks as $function => $acceptedArgs) {
25
+		add_filter($function, function () use ($function) {
26
+			$args = func_get_args();
27
+			array_shift($args); // remove the fallback value
28
+			return call_user_func_array($function, $args);
29
+		}, 10, $acceptedArgs);
30
+	}
31 31
 });
32 32
 
33 33
 /**
@@ -35,10 +35,10 @@  discard block
 block discarded – undo
35 35
  */
36 36
 function glsr($alias = null)
37 37
 {
38
-    $app = \GeminiLabs\SiteReviews\Application::load();
39
-    return !empty($alias)
40
-        ? $app->make($alias)
41
-        : $app;
38
+	$app = \GeminiLabs\SiteReviews\Application::load();
39
+	return !empty($alias)
40
+		? $app->make($alias)
41
+		: $app;
42 42
 }
43 43
 
44 44
 /**
@@ -48,15 +48,15 @@  discard block
 block discarded – undo
48 48
  */
49 49
 function glsr_array_column(array $array, $column)
50 50
 {
51
-    $result = array();
52
-    foreach ($array as $subarray) {
53
-        $subarray = (array) $subarray;
54
-        if (!isset($subarray[$column])) {
55
-            continue;
56
-        }
57
-        $result[] = $subarray[$column];
58
-    }
59
-    return $result;
51
+	$result = array();
52
+	foreach ($array as $subarray) {
53
+		$subarray = (array) $subarray;
54
+		if (!isset($subarray[$column])) {
55
+			continue;
56
+		}
57
+		$result[] = $subarray[$column];
58
+	}
59
+	return $result;
60 60
 }
61 61
 
62 62
 /**
@@ -64,8 +64,8 @@  discard block
 block discarded – undo
64 64
  */
65 65
 function glsr_calculate_ratings()
66 66
 {
67
-    glsr('Controllers\AdminController')->routerCountReviews(false);
68
-    glsr_log()->notice(__('Recalculated rating counts.', 'site-reviews'));
67
+	glsr('Controllers\AdminController')->routerCountReviews(false);
68
+	glsr_log()->notice(__('Recalculated rating counts.', 'site-reviews'));
69 69
 }
70 70
 
71 71
 /**
@@ -73,10 +73,10 @@  discard block
 block discarded – undo
73 73
  */
74 74
 function glsr_create_review($reviewValues = array())
75 75
 {
76
-    $review = new \GeminiLabs\SiteReviews\Commands\CreateReview(
77
-        \GeminiLabs\SiteReviews\Helpers\Arr::consolidateArray($reviewValues)
78
-    );
79
-    return glsr('Database\ReviewManager')->create($review);
76
+	$review = new \GeminiLabs\SiteReviews\Commands\CreateReview(
77
+		\GeminiLabs\SiteReviews\Helpers\Arr::consolidateArray($reviewValues)
78
+	);
79
+	return glsr('Database\ReviewManager')->create($review);
80 80
 }
81 81
 
82 82
 /**
@@ -84,12 +84,12 @@  discard block
 block discarded – undo
84 84
  */
85 85
 function glsr_current_screen()
86 86
 {
87
-    if (function_exists('get_current_screen')) {
88
-        $screen = get_current_screen();
89
-    }
90
-    return empty($screen)
91
-        ? (object) array_fill_keys(['base', 'id', 'post_type'], null)
92
-        : $screen;
87
+	if (function_exists('get_current_screen')) {
88
+		$screen = get_current_screen();
89
+	}
90
+	return empty($screen)
91
+		? (object) array_fill_keys(['base', 'id', 'post_type'], null)
92
+		: $screen;
93 93
 }
94 94
 
95 95
 /**
@@ -98,16 +98,16 @@  discard block
 block discarded – undo
98 98
  */
99 99
 function glsr_debug(...$vars)
100 100
 {
101
-    if (1 == count($vars)) {
102
-        $value = htmlspecialchars(print_r($vars[0], true), ENT_QUOTES, 'UTF-8');
103
-        printf('<div class="glsr-debug"><pre>%s</pre></div>', $value);
104
-    } else {
105
-        echo '<div class="glsr-debug-group">';
106
-        foreach ($vars as $var) {
107
-            glsr_debug($var);
108
-        }
109
-        echo '</div>';
110
-    }
101
+	if (1 == count($vars)) {
102
+		$value = htmlspecialchars(print_r($vars[0], true), ENT_QUOTES, 'UTF-8');
103
+		printf('<div class="glsr-debug"><pre>%s</pre></div>', $value);
104
+	} else {
105
+		echo '<div class="glsr-debug-group">';
106
+		foreach ($vars as $var) {
107
+			glsr_debug($var);
108
+		}
109
+		echo '</div>';
110
+	}
111 111
 }
112 112
 
113 113
 /**
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
  */
119 119
 function glsr_get($array, $path = '', $fallback = '')
120 120
 {
121
-    return \GeminiLabs\SiteReviews\Helpers\Arr::get($array, $path, $fallback);
121
+	return \GeminiLabs\SiteReviews\Helpers\Arr::get($array, $path, $fallback);
122 122
 }
123 123
 
124 124
 /**
@@ -129,9 +129,9 @@  discard block
 block discarded – undo
129 129
  */
130 130
 function glsr_get_option($path = '', $fallback = '', $cast = '')
131 131
 {
132
-    return is_string($path)
133
-        ? glsr('Database\OptionManager')->get(\GeminiLabs\SiteReviews\Helpers\Str::prefix('settings.', $path), $fallback, $cast)
134
-        : $fallback;
132
+	return is_string($path)
133
+		? glsr('Database\OptionManager')->get(\GeminiLabs\SiteReviews\Helpers\Str::prefix('settings.', $path), $fallback, $cast)
134
+		: $fallback;
135 135
 }
136 136
 
137 137
 /**
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
  */
140 140
 function glsr_get_options()
141 141
 {
142
-    return glsr('Database\OptionManager')->get('settings');
142
+	return glsr('Database\OptionManager')->get('settings');
143 143
 }
144 144
 
145 145
 /**
@@ -148,13 +148,13 @@  discard block
 block discarded – undo
148 148
  */
149 149
 function glsr_get_review($post)
150 150
 {
151
-    if (is_numeric($post)) {
152
-        $post = get_post($post);
153
-    }
154
-    if (!($post instanceof WP_Post)) {
155
-        $post = new WP_Post((object) []);
156
-    }
157
-    return glsr('Database\ReviewManager')->single($post);
151
+	if (is_numeric($post)) {
152
+		$post = get_post($post);
153
+	}
154
+	if (!($post instanceof WP_Post)) {
155
+		$post = new WP_Post((object) []);
156
+	}
157
+	return glsr('Database\ReviewManager')->single($post);
158 158
 }
159 159
 
160 160
 /**
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
  */
163 163
 function glsr_get_reviews($args = array())
164 164
 {
165
-    return glsr('Database\ReviewManager')->get(\GeminiLabs\SiteReviews\Helpers\Arr::consolidateArray($args));
165
+	return glsr('Database\ReviewManager')->get(\GeminiLabs\SiteReviews\Helpers\Arr::consolidateArray($args));
166 166
 }
167 167
 
168 168
 /**
@@ -170,12 +170,12 @@  discard block
 block discarded – undo
170 170
  */
171 171
 function glsr_log()
172 172
 {
173
-    $args = func_get_args();
174
-    $console = glsr('Modules\Console');
175
-    if ($value = \GeminiLabs\SiteReviews\Helpers\Arr::get($args, '0')) {
176
-        return $console->debug($value, \GeminiLabs\SiteReviews\Helpers\Arr::get($args, '1', []));
177
-    }
178
-    return $console;
173
+	$args = func_get_args();
174
+	$console = glsr('Modules\Console');
175
+	if ($value = \GeminiLabs\SiteReviews\Helpers\Arr::get($args, '0')) {
176
+		return $console->debug($value, \GeminiLabs\SiteReviews\Helpers\Arr::get($args, '1', []));
177
+	}
178
+	return $console;
179 179
 }
180 180
 
181 181
 /**
@@ -183,5 +183,5 @@  discard block
 block discarded – undo
183 183
  */
184 184
 function glsr_star_rating($rating)
185 185
 {
186
-    return glsr('Modules\Html\Partial')->build('star-rating', ['rating' => $rating]);
186
+	return glsr('Modules\Html\Partial')->build('star-rating', ['rating' => $rating]);
187 187
 }
Please login to merge, or discard this patch.
Spacing   +45 added lines, -45 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-defined('WPINC') || die;
3
+defined( 'WPINC' ) || die;
4 4
 
5 5
 /*
6 6
  * Alternate method of using the functions without having to use `function_exists()`
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
  * @param mixed ...
9 9
  * @return mixed
10 10
  */
11
-add_filter('plugins_loaded', function () {
11
+add_filter( 'plugins_loaded', function() {
12 12
     $hooks = array(
13 13
         'glsr_calculate_ratings' => 1,
14 14
         'glsr_create_review' => 2,
@@ -21,23 +21,23 @@  discard block
 block discarded – undo
21 21
         'glsr_log' => 3,
22 22
         'glsr_star_rating' => 2,
23 23
     );
24
-    foreach ($hooks as $function => $acceptedArgs) {
25
-        add_filter($function, function () use ($function) {
24
+    foreach( $hooks as $function => $acceptedArgs ) {
25
+        add_filter( $function, function() use ($function) {
26 26
             $args = func_get_args();
27
-            array_shift($args); // remove the fallback value
28
-            return call_user_func_array($function, $args);
29
-        }, 10, $acceptedArgs);
27
+            array_shift( $args ); // remove the fallback value
28
+            return call_user_func_array( $function, $args );
29
+        }, 10, $acceptedArgs );
30 30
     }
31 31
 });
32 32
 
33 33
 /**
34 34
  * @return mixed
35 35
  */
36
-function glsr($alias = null)
36
+function glsr( $alias = null )
37 37
 {
38 38
     $app = \GeminiLabs\SiteReviews\Application::load();
39 39
     return !empty($alias)
40
-        ? $app->make($alias)
40
+        ? $app->make( $alias )
41 41
         : $app;
42 42
 }
43 43
 
@@ -46,12 +46,12 @@  discard block
 block discarded – undo
46 46
  * @param $column string
47 47
  * @return array
48 48
  */
49
-function glsr_array_column(array $array, $column)
49
+function glsr_array_column( array $array, $column )
50 50
 {
51 51
     $result = array();
52
-    foreach ($array as $subarray) {
53
-        $subarray = (array) $subarray;
54
-        if (!isset($subarray[$column])) {
52
+    foreach( $array as $subarray ) {
53
+        $subarray = (array)$subarray;
54
+        if( !isset($subarray[$column]) ) {
55 55
             continue;
56 56
         }
57 57
         $result[] = $subarray[$column];
@@ -64,19 +64,19 @@  discard block
 block discarded – undo
64 64
  */
65 65
 function glsr_calculate_ratings()
66 66
 {
67
-    glsr('Controllers\AdminController')->routerCountReviews(false);
68
-    glsr_log()->notice(__('Recalculated rating counts.', 'site-reviews'));
67
+    glsr( 'Controllers\AdminController' )->routerCountReviews( false );
68
+    glsr_log()->notice( __( 'Recalculated rating counts.', 'site-reviews' ) );
69 69
 }
70 70
 
71 71
 /**
72 72
  * @return \GeminiLabs\SiteReviews\Review|false
73 73
  */
74
-function glsr_create_review($reviewValues = array())
74
+function glsr_create_review( $reviewValues = array() )
75 75
 {
76 76
     $review = new \GeminiLabs\SiteReviews\Commands\CreateReview(
77
-        \GeminiLabs\SiteReviews\Helpers\Arr::consolidateArray($reviewValues)
77
+        \GeminiLabs\SiteReviews\Helpers\Arr::consolidateArray( $reviewValues )
78 78
     );
79
-    return glsr('Database\ReviewManager')->create($review);
79
+    return glsr( 'Database\ReviewManager' )->create( $review );
80 80
 }
81 81
 
82 82
 /**
@@ -84,11 +84,11 @@  discard block
 block discarded – undo
84 84
  */
85 85
 function glsr_current_screen()
86 86
 {
87
-    if (function_exists('get_current_screen')) {
87
+    if( function_exists( 'get_current_screen' ) ) {
88 88
         $screen = get_current_screen();
89 89
     }
90 90
     return empty($screen)
91
-        ? (object) array_fill_keys(['base', 'id', 'post_type'], null)
91
+        ? (object)array_fill_keys( ['base', 'id', 'post_type'], null )
92 92
         : $screen;
93 93
 }
94 94
 
@@ -96,15 +96,15 @@  discard block
 block discarded – undo
96 96
  * @param mixed ...$vars
97 97
  * @return void
98 98
  */
99
-function glsr_debug(...$vars)
99
+function glsr_debug( ...$vars )
100 100
 {
101
-    if (1 == count($vars)) {
102
-        $value = htmlspecialchars(print_r($vars[0], true), ENT_QUOTES, 'UTF-8');
103
-        printf('<div class="glsr-debug"><pre>%s</pre></div>', $value);
101
+    if( 1 == count( $vars ) ) {
102
+        $value = htmlspecialchars( print_r( $vars[0], true ), ENT_QUOTES, 'UTF-8' );
103
+        printf( '<div class="glsr-debug"><pre>%s</pre></div>', $value );
104 104
     } else {
105 105
         echo '<div class="glsr-debug-group">';
106
-        foreach ($vars as $var) {
107
-            glsr_debug($var);
106
+        foreach( $vars as $var ) {
107
+            glsr_debug( $var );
108 108
         }
109 109
         echo '</div>';
110 110
     }
@@ -116,9 +116,9 @@  discard block
 block discarded – undo
116 116
  * @param mixed $fallback
117 117
  * @return mixed
118 118
  */
119
-function glsr_get($array, $path = '', $fallback = '')
119
+function glsr_get( $array, $path = '', $fallback = '' )
120 120
 {
121
-    return \GeminiLabs\SiteReviews\Helpers\Arr::get($array, $path, $fallback);
121
+    return \GeminiLabs\SiteReviews\Helpers\Arr::get( $array, $path, $fallback );
122 122
 }
123 123
 
124 124
 /**
@@ -127,10 +127,10 @@  discard block
 block discarded – undo
127 127
  * @param string $cast
128 128
  * @return string|array
129 129
  */
130
-function glsr_get_option($path = '', $fallback = '', $cast = '')
130
+function glsr_get_option( $path = '', $fallback = '', $cast = '' )
131 131
 {
132
-    return is_string($path)
133
-        ? glsr('Database\OptionManager')->get(\GeminiLabs\SiteReviews\Helpers\Str::prefix('settings.', $path), $fallback, $cast)
132
+    return is_string( $path )
133
+        ? glsr( 'Database\OptionManager' )->get( \GeminiLabs\SiteReviews\Helpers\Str::prefix( 'settings.', $path ), $fallback, $cast )
134 134
         : $fallback;
135 135
 }
136 136
 
@@ -139,30 +139,30 @@  discard block
 block discarded – undo
139 139
  */
140 140
 function glsr_get_options()
141 141
 {
142
-    return glsr('Database\OptionManager')->get('settings');
142
+    return glsr( 'Database\OptionManager' )->get( 'settings' );
143 143
 }
144 144
 
145 145
 /**
146 146
  * @param \WP_Post|int $post
147 147
  * @return \GeminiLabs\SiteReviews\Review
148 148
  */
149
-function glsr_get_review($post)
149
+function glsr_get_review( $post )
150 150
 {
151
-    if (is_numeric($post)) {
152
-        $post = get_post($post);
151
+    if( is_numeric( $post ) ) {
152
+        $post = get_post( $post );
153 153
     }
154
-    if (!($post instanceof WP_Post)) {
155
-        $post = new WP_Post((object) []);
154
+    if( !($post instanceof WP_Post) ) {
155
+        $post = new WP_Post( (object)[] );
156 156
     }
157
-    return glsr('Database\ReviewManager')->single($post);
157
+    return glsr( 'Database\ReviewManager' )->single( $post );
158 158
 }
159 159
 
160 160
 /**
161 161
  * @return array
162 162
  */
163
-function glsr_get_reviews($args = array())
163
+function glsr_get_reviews( $args = array() )
164 164
 {
165
-    return glsr('Database\ReviewManager')->get(\GeminiLabs\SiteReviews\Helpers\Arr::consolidateArray($args));
165
+    return glsr( 'Database\ReviewManager' )->get( \GeminiLabs\SiteReviews\Helpers\Arr::consolidateArray( $args ) );
166 166
 }
167 167
 
168 168
 /**
@@ -171,9 +171,9 @@  discard block
 block discarded – undo
171 171
 function glsr_log()
172 172
 {
173 173
     $args = func_get_args();
174
-    $console = glsr('Modules\Console');
175
-    if ($value = \GeminiLabs\SiteReviews\Helpers\Arr::get($args, '0')) {
176
-        return $console->debug($value, \GeminiLabs\SiteReviews\Helpers\Arr::get($args, '1', []));
174
+    $console = glsr( 'Modules\Console' );
175
+    if( $value = \GeminiLabs\SiteReviews\Helpers\Arr::get( $args, '0' ) ) {
176
+        return $console->debug( $value, \GeminiLabs\SiteReviews\Helpers\Arr::get( $args, '1', [] ) );
177 177
     }
178 178
     return $console;
179 179
 }
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
 /**
182 182
  * @return string
183 183
  */
184
-function glsr_star_rating($rating)
184
+function glsr_star_rating( $rating )
185 185
 {
186
-    return glsr('Modules\Html\Partial')->build('star-rating', ['rating' => $rating]);
186
+    return glsr( 'Modules\Html\Partial' )->build( 'star-rating', ['rating' => $rating] );
187 187
 }
Please login to merge, or discard this patch.
plugin/Modules/Upgrader.php 3 patches
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,8 @@
 block discarded – undo
49 49
         if ($this->currentVersion !== glsr()->version) {
50 50
             $this->setReviewCounts();
51 51
             $this->updateVersionFrom($this->currentVersion);
52
-        } elseif (!glsr(OptionManager::class)->get('last_review_count', false)) {
52
+        }
53
+        elseif (!glsr(OptionManager::class)->get('last_review_count', false)) {
53 54
             $this->setReviewCounts();
54 55
         }
55 56
     }
Please login to merge, or discard this patch.
Indentation   +75 added lines, -75 removed lines patch added patch discarded remove patch
@@ -8,84 +8,84 @@
 block discarded – undo
8 8
 
9 9
 class Upgrader
10 10
 {
11
-    /**
12
-     * @return string
13
-     */
14
-    public $currentVersion;
11
+	/**
12
+	 * @return string
13
+	 */
14
+	public $currentVersion;
15 15
 
16
-    /**
17
-     * @return void
18
-     */
19
-    public function run()
20
-    {
21
-        $filenames = [];
22
-        $iterator = new DirectoryIterator(dirname(__FILE__).'/Upgrader');
23
-        foreach ($iterator as $fileinfo) {
24
-            if ($fileinfo->isFile()) {
25
-                $filenames[] = $fileinfo->getFilename();
26
-            }
27
-        }
28
-        natsort($filenames);
29
-        $this->currentVersion = $this->currentVersion();
30
-        array_walk($filenames, function ($file) {
31
-            $className = str_replace('.php', '', $file);
32
-            $upgradeFromVersion = str_replace(['Upgrade_', '_'], ['', '.'], $className);
33
-            $suffix = preg_replace('/[\d.]+(.+)?/', '${1}', glsr()->version); // allow alpha/beta versions
34
-            if ('0.0.0' == $this->currentVersion
35
-                || version_compare($this->currentVersion, $upgradeFromVersion.$suffix, '>=')) {
36
-                return;
37
-            }
38
-            glsr('Modules\\Upgrader\\'.$className);
39
-            glsr_log()->notice('Completed Upgrade for v'.$upgradeFromVersion.$suffix);
40
-        });
41
-        $this->finish();
42
-    }
16
+	/**
17
+	 * @return void
18
+	 */
19
+	public function run()
20
+	{
21
+		$filenames = [];
22
+		$iterator = new DirectoryIterator(dirname(__FILE__).'/Upgrader');
23
+		foreach ($iterator as $fileinfo) {
24
+			if ($fileinfo->isFile()) {
25
+				$filenames[] = $fileinfo->getFilename();
26
+			}
27
+		}
28
+		natsort($filenames);
29
+		$this->currentVersion = $this->currentVersion();
30
+		array_walk($filenames, function ($file) {
31
+			$className = str_replace('.php', '', $file);
32
+			$upgradeFromVersion = str_replace(['Upgrade_', '_'], ['', '.'], $className);
33
+			$suffix = preg_replace('/[\d.]+(.+)?/', '${1}', glsr()->version); // allow alpha/beta versions
34
+			if ('0.0.0' == $this->currentVersion
35
+				|| version_compare($this->currentVersion, $upgradeFromVersion.$suffix, '>=')) {
36
+				return;
37
+			}
38
+			glsr('Modules\\Upgrader\\'.$className);
39
+			glsr_log()->notice('Completed Upgrade for v'.$upgradeFromVersion.$suffix);
40
+		});
41
+		$this->finish();
42
+	}
43 43
 
44
-    /**
45
-     * @return void
46
-     */
47
-    public function finish()
48
-    {
49
-        if ($this->currentVersion !== glsr()->version) {
50
-            $this->setReviewCounts();
51
-            $this->updateVersionFrom($this->currentVersion);
52
-        } elseif (!glsr(OptionManager::class)->get('last_review_count', false)) {
53
-            $this->setReviewCounts();
54
-        }
55
-    }
44
+	/**
45
+	 * @return void
46
+	 */
47
+	public function finish()
48
+	{
49
+		if ($this->currentVersion !== glsr()->version) {
50
+			$this->setReviewCounts();
51
+			$this->updateVersionFrom($this->currentVersion);
52
+		} elseif (!glsr(OptionManager::class)->get('last_review_count', false)) {
53
+			$this->setReviewCounts();
54
+		}
55
+	}
56 56
 
57
-    /**
58
-     * @return string
59
-     */
60
-    protected function currentVersion()
61
-    {
62
-        $fallback = '0.0.0';
63
-        $majorVersions = [4, 3, 2];
64
-        foreach ($majorVersions as $majorVersion) {
65
-            $settings = get_option(OptionManager::databaseKey($majorVersion));
66
-            $version = Arr::get($settings, 'version', $fallback);
67
-            if (version_compare($version, $fallback, '>')) {
68
-                return $version;
69
-            }
70
-        }
71
-        return $fallback;
72
-    }
57
+	/**
58
+	 * @return string
59
+	 */
60
+	protected function currentVersion()
61
+	{
62
+		$fallback = '0.0.0';
63
+		$majorVersions = [4, 3, 2];
64
+		foreach ($majorVersions as $majorVersion) {
65
+			$settings = get_option(OptionManager::databaseKey($majorVersion));
66
+			$version = Arr::get($settings, 'version', $fallback);
67
+			if (version_compare($version, $fallback, '>')) {
68
+				return $version;
69
+			}
70
+		}
71
+		return $fallback;
72
+	}
73 73
 
74
-    /**
75
-     * @return void
76
-     */
77
-    protected function setReviewCounts()
78
-    {
79
-        add_action('admin_init', 'glsr_calculate_ratings');
80
-    }
74
+	/**
75
+	 * @return void
76
+	 */
77
+	protected function setReviewCounts()
78
+	{
79
+		add_action('admin_init', 'glsr_calculate_ratings');
80
+	}
81 81
 
82
-    /**
83
-     * @param string $previousVersion
84
-     * @return void
85
-     */
86
-    protected function updateVersionFrom($previousVersion)
87
-    {
88
-        glsr(OptionManager::class)->set('version', glsr()->version);
89
-        glsr(OptionManager::class)->set('version_upgraded_from', $previousVersion);
90
-    }
82
+	/**
83
+	 * @param string $previousVersion
84
+	 * @return void
85
+	 */
86
+	protected function updateVersionFrom($previousVersion)
87
+	{
88
+		glsr(OptionManager::class)->set('version', glsr()->version);
89
+		glsr(OptionManager::class)->set('version_upgraded_from', $previousVersion);
90
+	}
91 91
 }
Please login to merge, or discard this patch.
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -19,24 +19,24 @@  discard block
 block discarded – undo
19 19
     public function run()
20 20
     {
21 21
         $filenames = [];
22
-        $iterator = new DirectoryIterator(dirname(__FILE__).'/Upgrader');
23
-        foreach ($iterator as $fileinfo) {
24
-            if ($fileinfo->isFile()) {
22
+        $iterator = new DirectoryIterator( dirname( __FILE__ ).'/Upgrader' );
23
+        foreach( $iterator as $fileinfo ) {
24
+            if( $fileinfo->isFile() ) {
25 25
                 $filenames[] = $fileinfo->getFilename();
26 26
             }
27 27
         }
28
-        natsort($filenames);
28
+        natsort( $filenames );
29 29
         $this->currentVersion = $this->currentVersion();
30
-        array_walk($filenames, function ($file) {
31
-            $className = str_replace('.php', '', $file);
32
-            $upgradeFromVersion = str_replace(['Upgrade_', '_'], ['', '.'], $className);
33
-            $suffix = preg_replace('/[\d.]+(.+)?/', '${1}', glsr()->version); // allow alpha/beta versions
34
-            if ('0.0.0' == $this->currentVersion
35
-                || version_compare($this->currentVersion, $upgradeFromVersion.$suffix, '>=')) {
30
+        array_walk( $filenames, function( $file ) {
31
+            $className = str_replace( '.php', '', $file );
32
+            $upgradeFromVersion = str_replace( ['Upgrade_', '_'], ['', '.'], $className );
33
+            $suffix = preg_replace( '/[\d.]+(.+)?/', '${1}', glsr()->version ); // allow alpha/beta versions
34
+            if( '0.0.0' == $this->currentVersion
35
+                || version_compare( $this->currentVersion, $upgradeFromVersion.$suffix, '>=' ) ) {
36 36
                 return;
37 37
             }
38
-            glsr('Modules\\Upgrader\\'.$className);
39
-            glsr_log()->notice('Completed Upgrade for v'.$upgradeFromVersion.$suffix);
38
+            glsr( 'Modules\\Upgrader\\'.$className );
39
+            glsr_log()->notice( 'Completed Upgrade for v'.$upgradeFromVersion.$suffix );
40 40
         });
41 41
         $this->finish();
42 42
     }
@@ -46,10 +46,10 @@  discard block
 block discarded – undo
46 46
      */
47 47
     public function finish()
48 48
     {
49
-        if ($this->currentVersion !== glsr()->version) {
49
+        if( $this->currentVersion !== glsr()->version ) {
50 50
             $this->setReviewCounts();
51
-            $this->updateVersionFrom($this->currentVersion);
52
-        } elseif (!glsr(OptionManager::class)->get('last_review_count', false)) {
51
+            $this->updateVersionFrom( $this->currentVersion );
52
+        } elseif( !glsr( OptionManager::class )->get( 'last_review_count', false ) ) {
53 53
             $this->setReviewCounts();
54 54
         }
55 55
     }
@@ -61,10 +61,10 @@  discard block
 block discarded – undo
61 61
     {
62 62
         $fallback = '0.0.0';
63 63
         $majorVersions = [4, 3, 2];
64
-        foreach ($majorVersions as $majorVersion) {
65
-            $settings = get_option(OptionManager::databaseKey($majorVersion));
66
-            $version = Arr::get($settings, 'version', $fallback);
67
-            if (version_compare($version, $fallback, '>')) {
64
+        foreach( $majorVersions as $majorVersion ) {
65
+            $settings = get_option( OptionManager::databaseKey( $majorVersion ) );
66
+            $version = Arr::get( $settings, 'version', $fallback );
67
+            if( version_compare( $version, $fallback, '>' ) ) {
68 68
                 return $version;
69 69
             }
70 70
         }
@@ -76,16 +76,16 @@  discard block
 block discarded – undo
76 76
      */
77 77
     protected function setReviewCounts()
78 78
     {
79
-        add_action('admin_init', 'glsr_calculate_ratings');
79
+        add_action( 'admin_init', 'glsr_calculate_ratings' );
80 80
     }
81 81
 
82 82
     /**
83 83
      * @param string $previousVersion
84 84
      * @return void
85 85
      */
86
-    protected function updateVersionFrom($previousVersion)
86
+    protected function updateVersionFrom( $previousVersion )
87 87
     {
88
-        glsr(OptionManager::class)->set('version', glsr()->version);
89
-        glsr(OptionManager::class)->set('version_upgraded_from', $previousVersion);
88
+        glsr( OptionManager::class )->set( 'version', glsr()->version );
89
+        glsr( OptionManager::class )->set( 'version_upgraded_from', $previousVersion );
90 90
     }
91 91
 }
Please login to merge, or discard this patch.
plugin/Provider.php 2 patches
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -10,17 +10,17 @@
 block discarded – undo
10 10
 
11 11
 class Provider implements ProviderContract
12 12
 {
13
-    /**
14
-     * @return void
15
-     */
16
-    public function register(Application $app)
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
25
-    }
13
+	/**
14
+	 * @return void
15
+	 */
16
+	public function register(Application $app)
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
25
+	}
26 26
 }
Please login to merge, or discard this 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 2 patches
Indentation   +63 added lines, -63 removed lines patch added patch discarded remove patch
@@ -8,70 +8,70 @@
 block discarded – undo
8 8
 
9 9
 class ChangeStatus
10 10
 {
11
-    /**
12
-     * @return array
13
-     */
14
-    public function handle(Command $command)
15
-    {
16
-        $postId = wp_update_post([
17
-            'ID' => $command->id,
18
-            'post_status' => $command->status,
19
-        ]);
20
-        if (is_wp_error($postId)) {
21
-            glsr_log()->error($postId->get_error_message());
22
-            return [];
23
-        }
24
-        return [
25
-            'class' => 'status-'.$command->status,
26
-            'counts' => $this->getStatusLinks(),
27
-            'link' => $this->getPostLink($postId).$this->getPostState($postId),
28
-            'pending' => wp_count_posts(Application::POST_TYPE, 'readable')->pending,
29
-        ];
30
-    }
11
+	/**
12
+	 * @return array
13
+	 */
14
+	public function handle(Command $command)
15
+	{
16
+		$postId = wp_update_post([
17
+			'ID' => $command->id,
18
+			'post_status' => $command->status,
19
+		]);
20
+		if (is_wp_error($postId)) {
21
+			glsr_log()->error($postId->get_error_message());
22
+			return [];
23
+		}
24
+		return [
25
+			'class' => 'status-'.$command->status,
26
+			'counts' => $this->getStatusLinks(),
27
+			'link' => $this->getPostLink($postId).$this->getPostState($postId),
28
+			'pending' => wp_count_posts(Application::POST_TYPE, 'readable')->pending,
29
+		];
30
+	}
31 31
 
32
-    /**
33
-     * @param int $postId
34
-     * @return string
35
-     */
36
-    protected function getPostLink($postId)
37
-    {
38
-        $title = _draft_or_post_title($postId);
39
-        return glsr(Builder::class)->a($title, [
40
-            'aria-label' => '&#8220;'.esc_attr($title).'&#8221; ('.__('Edit', 'site-reviews').')',
41
-            'class' => 'row-title',
42
-            'href' => get_edit_post_link($postId),
43
-        ]);
44
-    }
32
+	/**
33
+	 * @param int $postId
34
+	 * @return string
35
+	 */
36
+	protected function getPostLink($postId)
37
+	{
38
+		$title = _draft_or_post_title($postId);
39
+		return glsr(Builder::class)->a($title, [
40
+			'aria-label' => '&#8220;'.esc_attr($title).'&#8221; ('.__('Edit', 'site-reviews').')',
41
+			'class' => 'row-title',
42
+			'href' => get_edit_post_link($postId),
43
+		]);
44
+	}
45 45
 
46
-    /**
47
-     * @param int $postId
48
-     * @return string
49
-     */
50
-    protected function getPostState($postId)
51
-    {
52
-        ob_start();
53
-        _post_states(get_post($postId));
54
-        return ob_get_clean();
55
-    }
46
+	/**
47
+	 * @param int $postId
48
+	 * @return string
49
+	 */
50
+	protected function getPostState($postId)
51
+	{
52
+		ob_start();
53
+		_post_states(get_post($postId));
54
+		return ob_get_clean();
55
+	}
56 56
 
57
-    /**
58
-     * @return void|string
59
-     */
60
-    protected function getStatusLinks()
61
-    {
62
-        global $avail_post_stati;
63
-        require_once ABSPATH.'wp-admin/includes/class-wp-posts-list-table.php';
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)) {
70
-            return;
71
-        }
72
-        foreach ($views as $class => $view) {
73
-            $views[$class] = "\t<li class='$class'>$view";
74
-        }
75
-        return implode(' |</li>', $views).'</li>';
76
-    }
57
+	/**
58
+	 * @return void|string
59
+	 */
60
+	protected function getStatusLinks()
61
+	{
62
+		global $avail_post_stati;
63
+		require_once ABSPATH.'wp-admin/includes/class-wp-posts-list-table.php';
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)) {
70
+			return;
71
+		}
72
+		foreach ($views as $class => $view) {
73
+			$views[$class] = "\t<li class='$class'>$view";
74
+		}
75
+		return implode(' |</li>', $views).'</li>';
76
+	}
77 77
 }
Please login to merge, or discard this 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' => '&#8220;'.esc_attr($title).'&#8221; ('.__('Edit', 'site-reviews').')',
38
+        $title = _draft_or_post_title( $postId );
39
+        return glsr( Builder::class )->a( $title, [
40
+            'aria-label' => '&#8220;'.esc_attr( $title ).'&#8221; ('.__( '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 2 patches
Indentation   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -8,40 +8,40 @@
 block discarded – undo
8 8
 
9 9
 class CreateReview
10 10
 {
11
-    /**
12
-     * @return void|string
13
-     */
14
-    public function handle(Command $command)
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'));
20
-            return;
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) {
25
-            return;
26
-        }
27
-        wp_safe_redirect($this->getReferer($command));
28
-        exit;
29
-    }
11
+	/**
12
+	 * @return void|string
13
+	 */
14
+	public function handle(Command $command)
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'));
20
+			return;
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) {
25
+			return;
26
+		}
27
+		wp_safe_redirect($this->getReferer($command));
28
+		exit;
29
+	}
30 30
 
31
-    /**
32
-     * @return string
33
-     */
34
-    protected function getReferer(Command $command)
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)) {
39
-            $referer = $command->referer;
40
-        }
41
-        if (empty($referer)) {
42
-            glsr_log()->warning('The form referer ($_SERVER[REQUEST_URI]) was empty.')->debug($command);
43
-            $referer = home_url();
44
-        }
45
-        return $referer;
46
-    }
31
+	/**
32
+	 * @return string
33
+	 */
34
+	protected function getReferer(Command $command)
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)) {
39
+			$referer = $command->referer;
40
+		}
41
+		if (empty($referer)) {
42
+			glsr_log()->warning('The form referer ($_SERVER[REQUEST_URI]) was empty.')->debug($command);
43
+			$referer = home_url();
44
+		}
45
+		return $referer;
46
+	}
47 47
 }
Please login to merge, or discard this 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 2 patches
Indentation   +82 added lines, -82 removed lines patch added patch discarded remove patch
@@ -4,131 +4,131 @@
 block discarded – undo
4 4
 
5 5
 // Unprotected review meta has been deprecated
6 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
-        return $check;
10
-    }
11
-    glsr()->deprecated[] = sprintf(
12
-        'The "%1$s" meta_key has been deprecated for Reviews. Please use the protected "_%1$s" meta_key instead.',
13
-        $metaKey
14
-    );
15
-    return get_post_meta($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
+		return $check;
10
+	}
11
+	glsr()->deprecated[] = sprintf(
12
+		'The "%1$s" meta_key has been deprecated for Reviews. Please use the protected "_%1$s" meta_key instead.',
13
+		$metaKey
14
+	);
15
+	return get_post_meta($postId, '_'.$metaKey, $single);
16 16
 }, 10, 4);
17 17
 
18 18
 // Modules/Html/Template.php
19 19
 add_filter('site-reviews/interpolate/reviews', function ($context, $template) {
20
-    $search = '{{ navigation }}';
21
-    if (false !== strpos($template, $search)) {
22
-        $context['navigation'] = $context['pagination'];
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
-    }
25
-    return $context;
20
+	$search = '{{ navigation }}';
21
+	if (false !== strpos($template, $search)) {
22
+		$context['navigation'] = $context['pagination'];
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
+	}
25
+	return $context;
26 26
 }, 10, 2);
27 27
 
28 28
 // Database/ReviewManager.php
29 29
 add_action('site-reviews/review/created', function ($review) {
30
-    if (has_action('site-reviews/local/review/create')) {
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);
33
-    }
30
+	if (has_action('site-reviews/local/review/create')) {
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);
33
+	}
34 34
 }, 9);
35 35
 
36 36
 // Handlers/CreateReview.php
37 37
 add_action('site-reviews/review/submitted', function ($review) {
38
-    if (has_action('site-reviews/local/review/submitted')) {
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);
41
-    }
42
-    if (has_filter('site-reviews/local/review/submitted/message')) {
43
-        glsr()->deprecated[] = 'The "site-reviews/local/review/submitted/message" hook has been deprecated.';
44
-    }
38
+	if (has_action('site-reviews/local/review/submitted')) {
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);
41
+	}
42
+	if (has_filter('site-reviews/local/review/submitted/message')) {
43
+		glsr()->deprecated[] = 'The "site-reviews/local/review/submitted/message" hook has been deprecated.';
44
+	}
45 45
 }, 9);
46 46
 
47 47
 // Database/ReviewManager.php
48 48
 add_filter('site-reviews/create/review-values', function ($values, $command) {
49
-    if (has_filter('site-reviews/local/review')) {
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);
52
-    }
53
-    return $values;
49
+	if (has_filter('site-reviews/local/review')) {
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);
52
+	}
53
+	return $values;
54 54
 }, 9, 2);
55 55
 
56 56
 // Handlers/EnqueuePublicAssets.php
57 57
 add_filter('site-reviews/enqueue/public/localize', function ($variables) {
58
-    if (has_filter('site-reviews/enqueue/localize')) {
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);
61
-    }
62
-    return $variables;
58
+	if (has_filter('site-reviews/enqueue/localize')) {
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);
61
+	}
62
+	return $variables;
63 63
 }, 9);
64 64
 
65 65
 // Modules/Rating.php
66 66
 add_filter('site-reviews/rating/average', function ($average) {
67
-    if (has_filter('site-reviews/average/rating')) {
68
-        glsr()->deprecated[] = 'The "site-reviews/average/rating" hook has been deprecated. Please use the "site-reviews/rating/average" hook instead.';
69
-    }
70
-    return $average;
67
+	if (has_filter('site-reviews/average/rating')) {
68
+		glsr()->deprecated[] = 'The "site-reviews/average/rating" hook has been deprecated. Please use the "site-reviews/rating/average" hook instead.';
69
+	}
70
+	return $average;
71 71
 }, 9);
72 72
 
73 73
 // Modules/Rating.php
74 74
 add_filter('site-reviews/rating/ranking', function ($ranking) {
75
-    if (has_filter('site-reviews/bayesian/ranking')) {
76
-        glsr()->deprecated[] = 'The "site-reviews/bayesian/ranking" hook has been deprecated. Please use the "site-reviews/rating/ranking" hook instead.';
77
-    }
78
-    return $ranking;
75
+	if (has_filter('site-reviews/bayesian/ranking')) {
76
+		glsr()->deprecated[] = 'The "site-reviews/bayesian/ranking" hook has been deprecated. Please use the "site-reviews/rating/ranking" hook instead.';
77
+	}
78
+	return $ranking;
79 79
 }, 9);
80 80
 
81 81
 // Modules/Html/Partials/SiteReviews.php
82 82
 add_filter('site-reviews/review/build/after', function ($renderedFields) {
83
-    if (has_filter('site-reviews/reviews/review/text')) {
84
-        glsr()->deprecated[] = 'The "site-reviews/reviews/review/text" hook has been deprecated. Please use the "site-reviews/review/build/after" hook instead.';
85
-    }
86
-    if (has_filter('site-reviews/reviews/review/title')) {
87
-        glsr()->deprecated[] = 'The "site-reviews/reviews/review/title" hook has been deprecated. Please use the "site-reviews/review/build/after" hook instead.';
88
-    }
89
-    return $renderedFields;
83
+	if (has_filter('site-reviews/reviews/review/text')) {
84
+		glsr()->deprecated[] = 'The "site-reviews/reviews/review/text" hook has been deprecated. Please use the "site-reviews/review/build/after" hook instead.';
85
+	}
86
+	if (has_filter('site-reviews/reviews/review/title')) {
87
+		glsr()->deprecated[] = 'The "site-reviews/reviews/review/title" hook has been deprecated. Please use the "site-reviews/review/build/after" hook instead.';
88
+	}
89
+	return $renderedFields;
90 90
 }, 9);
91 91
 
92 92
 // Modules/Html/Partials/SiteReviews.php
93 93
 add_filter('site-reviews/review/build/before', function ($review) {
94
-    if (has_filter('site-reviews/rendered/review')) {
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
-    }
97
-    if (has_filter('site-reviews/rendered/review/meta/order')) {
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
-    }
100
-    if (has_filter('site-reviews/rendered/review/order')) {
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
-    }
103
-    if (has_filter('site-reviews/rendered/review-form/login-register')) {
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
-    }
106
-    if (has_filter('site-reviews/reviews/navigation_links')) {
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
-    }
109
-    return $review;
94
+	if (has_filter('site-reviews/rendered/review')) {
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
+	}
97
+	if (has_filter('site-reviews/rendered/review/meta/order')) {
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
+	}
100
+	if (has_filter('site-reviews/rendered/review/order')) {
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
+	}
103
+	if (has_filter('site-reviews/rendered/review-form/login-register')) {
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
+	}
106
+	if (has_filter('site-reviews/reviews/navigation_links')) {
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
+	}
109
+	return $review;
110 110
 }, 9);
111 111
 
112 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
-    }
117
-    return $result;
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
+	}
117
+	return $result;
118 118
 }, 9, 2);
119 119
 
120 120
 add_filter('site-reviews/views/file', function ($file, $view, $data) {
121
-    if (has_filter('site-reviews/addon/views/file')) {
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);
124
-    }
125
-    return $file;
121
+	if (has_filter('site-reviews/addon/views/file')) {
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);
124
+	}
125
+	return $file;
126 126
 }, 9, 3);
127 127
 
128 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
-    }
129
+	$notices = array_keys(array_flip(glsr()->deprecated));
130
+	natsort($notices);
131
+	foreach ($notices as $notice) {
132
+		glsr_log()->warning($notice);
133
+	}
134 134
 });
Please login to merge, or discard this 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.