Passed
Push — master ( ae1954...aab291 )
by Paul
08:17 queued 04:15
created
plugin/Modules/Validator/ValidationRules.php 1 patch
Spacing   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -15,23 +15,23 @@  discard block
 block discarded – undo
15 15
      * @param mixed $value
16 16
      * @return mixed
17 17
      */
18
-    abstract protected function getSize($attribute, $value);
18
+    abstract protected function getSize( $attribute, $value );
19 19
 
20 20
     /**
21 21
      * Replace all placeholders.
22 22
      * @param string $message
23 23
      * @return string
24 24
      */
25
-    protected function replace($message, array $parameters)
25
+    protected function replace( $message, array $parameters )
26 26
     {
27
-        if (false === strpos($message, '%s')) {
27
+        if( false === strpos( $message, '%s' ) ) {
28 28
             return $message;
29 29
         }
30
-        return preg_replace_callback('/(%s)/', function () use (&$parameters) {
31
-            foreach ($parameters as $key => $value) {
32
-                return array_shift($parameters);
30
+        return preg_replace_callback( '/(%s)/', function() use (&$parameters) {
31
+            foreach( $parameters as $key => $value ) {
32
+                return array_shift( $parameters );
33 33
             }
34
-        }, $message);
34
+        }, $message );
35 35
     }
36 36
 
37 37
     /**
@@ -41,10 +41,10 @@  discard block
 block discarded – undo
41 41
      * @param mixed $value
42 42
      * @return bool
43 43
      */
44
-    public function validateAccepted($value)
44
+    public function validateAccepted( $value )
45 45
     {
46 46
         $acceptable = ['yes', 'on', '1', 1, true, 'true'];
47
-        return $this->validateRequired($value) && in_array($value, $acceptable, true);
47
+        return $this->validateRequired( $value ) && in_array( $value, $acceptable, true );
48 48
     }
49 49
 
50 50
     /**
@@ -53,10 +53,10 @@  discard block
 block discarded – undo
53 53
      * @param mixed $value
54 54
      * @return bool
55 55
      */
56
-    public function validateBetween($value, $attribute, array $parameters)
56
+    public function validateBetween( $value, $attribute, array $parameters )
57 57
     {
58
-        $this->requireParameterCount(2, $parameters, 'between');
59
-        $size = $this->getSize($attribute, $value);
58
+        $this->requireParameterCount( 2, $parameters, 'between' );
59
+        $size = $this->getSize( $attribute, $value );
60 60
         return $size >= $parameters[0] && $size <= $parameters[1];
61 61
     }
62 62
 
@@ -65,9 +65,9 @@  discard block
 block discarded – undo
65 65
      * @param mixed $value
66 66
      * @return bool
67 67
      */
68
-    public function validateEmail($value)
68
+    public function validateEmail( $value )
69 69
     {
70
-        return false !== filter_var($value, FILTER_VALIDATE_EMAIL);
70
+        return false !== filter_var( $value, FILTER_VALIDATE_EMAIL );
71 71
     }
72 72
 
73 73
     /**
@@ -76,10 +76,10 @@  discard block
 block discarded – undo
76 76
      * @param mixed $value
77 77
      * @return bool
78 78
      */
79
-    public function validateMax($value, $attribute, array $parameters)
79
+    public function validateMax( $value, $attribute, array $parameters )
80 80
     {
81
-        $this->requireParameterCount(1, $parameters, 'max');
82
-        return $this->getSize($attribute, $value) <= $parameters[0];
81
+        $this->requireParameterCount( 1, $parameters, 'max' );
82
+        return $this->getSize( $attribute, $value ) <= $parameters[0];
83 83
     }
84 84
 
85 85
     /**
@@ -88,10 +88,10 @@  discard block
 block discarded – undo
88 88
      * @param mixed $value
89 89
      * @return bool
90 90
      */
91
-    public function validateMin($value, $attribute, array $parameters)
91
+    public function validateMin( $value, $attribute, array $parameters )
92 92
     {
93
-        $this->requireParameterCount(1, $parameters, 'min');
94
-        return $this->getSize($attribute, $value) >= $parameters[0];
93
+        $this->requireParameterCount( 1, $parameters, 'min' );
94
+        return $this->getSize( $attribute, $value ) >= $parameters[0];
95 95
     }
96 96
 
97 97
     /**
@@ -99,9 +99,9 @@  discard block
 block discarded – undo
99 99
      * @param mixed $value
100 100
      * @return bool
101 101
      */
102
-    public function validateNumber($value)
102
+    public function validateNumber( $value )
103 103
     {
104
-        return is_numeric($value);
104
+        return is_numeric( $value );
105 105
     }
106 106
 
107 107
     /**
@@ -109,11 +109,11 @@  discard block
 block discarded – undo
109 109
      * @param mixed $value
110 110
      * @return bool
111 111
      */
112
-    public function validateRequired($value)
112
+    public function validateRequired( $value )
113 113
     {
114
-        return is_null($value)
115
-            || (is_string($value) && '' === trim($value))
116
-            || (is_array($value) && count($value) < 1)
114
+        return is_null( $value )
115
+            || (is_string( $value ) && '' === trim( $value ))
116
+            || (is_array( $value ) && count( $value ) < 1)
117 117
             ? false
118 118
             : true;
119 119
     }
@@ -125,10 +125,10 @@  discard block
 block discarded – undo
125 125
      * @return void
126 126
      * @throws InvalidArgumentException
127 127
      */
128
-    protected function requireParameterCount($count, array $parameters, $rule)
128
+    protected function requireParameterCount( $count, array $parameters, $rule )
129 129
     {
130
-        if (count($parameters) < $count) {
131
-            throw new InvalidArgumentException("Validation rule $rule requires at least $count parameters.");
130
+        if( count( $parameters ) < $count ) {
131
+            throw new InvalidArgumentException( "Validation rule $rule requires at least $count parameters." );
132 132
         }
133 133
     }
134 134
 }
Please login to merge, or discard this patch.
plugin/Contracts/ShortcodeContract.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,5 +8,5 @@
 block discarded – undo
8 8
      * @params string|array $atts
9 9
      * @return string
10 10
      */
11
-    public function buildShortcode($atts = []);
11
+    public function buildShortcode( $atts = [] );
12 12
 }
Please login to merge, or discard this patch.
plugin/Contracts/PartialContract.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,5 +7,5 @@
 block discarded – undo
7 7
     /**
8 8
      * @return void|string
9 9
      */
10
-    public function build(array $args = []);
10
+    public function build( array $args = [] );
11 11
 }
Please login to merge, or discard this patch.
plugin/Contracts/ProviderContract.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,5 +9,5 @@
 block discarded – undo
9 9
     /**
10 10
      * @return void
11 11
      */
12
-    public function register(Application $app);
12
+    public function register( Application $app );
13 13
 }
Please login to merge, or discard this patch.
plugin/Database/Cache.php 1 patch
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -13,25 +13,25 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function getCloudflareIps()
15 15
     {
16
-        $ipAddresses = get_transient(Application::ID.'_cloudflare_ips');
17
-        if (false === $ipAddresses) {
18
-            $ipAddresses = array_fill_keys(['v4', 'v6'], []);
19
-            foreach (array_keys($ipAddresses) as $version) {
16
+        $ipAddresses = get_transient( Application::ID.'_cloudflare_ips' );
17
+        if( false === $ipAddresses ) {
18
+            $ipAddresses = array_fill_keys( ['v4', 'v6'], [] );
19
+            foreach( array_keys( $ipAddresses ) as $version ) {
20 20
                 $url = 'https://www.cloudflare.com/ips-'.$version;
21
-                $response = wp_remote_get($url);
22
-                if (is_wp_error($response)) {
23
-                    glsr_log()->error($response->get_error_message());
21
+                $response = wp_remote_get( $url );
22
+                if( is_wp_error( $response ) ) {
23
+                    glsr_log()->error( $response->get_error_message() );
24 24
                     continue;
25 25
                 }
26
-                if ('200' != ($statusCode = wp_remote_retrieve_response_code($response))) {
27
-                    glsr_log()->error('Unable to connect to '.$url.' ['.$statusCode.']');
26
+                if( '200' != ($statusCode = wp_remote_retrieve_response_code( $response )) ) {
27
+                    glsr_log()->error( 'Unable to connect to '.$url.' ['.$statusCode.']' );
28 28
                     continue;
29 29
                 }
30 30
                 $ipAddresses[$version] = array_filter(
31
-                    (array) preg_split('/\R/', wp_remote_retrieve_body($response))
31
+                    (array)preg_split( '/\R/', wp_remote_retrieve_body( $response ) )
32 32
                 );
33 33
             }
34
-            set_transient(Application::ID.'_cloudflare_ips', $ipAddresses, static::EXPIRY_TIME);
34
+            set_transient( Application::ID.'_cloudflare_ips', $ipAddresses, static::EXPIRY_TIME );
35 35
         }
36 36
         return $ipAddresses;
37 37
     }
@@ -40,16 +40,16 @@  discard block
 block discarded – undo
40 40
      * @param string $metaKey
41 41
      * @return array
42 42
      */
43
-    public function getReviewCountsFor($metaKey)
43
+    public function getReviewCountsFor( $metaKey )
44 44
     {
45
-        $counts = wp_cache_get(Application::ID, $metaKey.'_count');
46
-        if (false === $counts) {
45
+        $counts = wp_cache_get( Application::ID, $metaKey.'_count' );
46
+        if( false === $counts ) {
47 47
             $counts = [];
48
-            $results = glsr(SqlQueries::class)->getReviewCountsFor($metaKey);
49
-            foreach ($results as $result) {
48
+            $results = glsr( SqlQueries::class )->getReviewCountsFor( $metaKey );
49
+            foreach( $results as $result ) {
50 50
                 $counts[$result->name] = $result->num_posts;
51 51
             }
52
-            wp_cache_set(Application::ID, $counts, $metaKey.'_count');
52
+            wp_cache_set( Application::ID, $counts, $metaKey.'_count' );
53 53
         }
54 54
         return $counts;
55 55
     }
@@ -59,14 +59,14 @@  discard block
 block discarded – undo
59 59
      */
60 60
     public function getRemotePostTest()
61 61
     {
62
-        $test = get_transient(Application::ID.'_remote_post_test');
63
-        if (false === $test) {
64
-            $response = wp_remote_post('https://api.wordpress.org/stats/php/1.0/');
65
-            $test = !is_wp_error($response)
66
-                && in_array($response['response']['code'], range(200, 299))
62
+        $test = get_transient( Application::ID.'_remote_post_test' );
63
+        if( false === $test ) {
64
+            $response = wp_remote_post( 'https://api.wordpress.org/stats/php/1.0/' );
65
+            $test = !is_wp_error( $response )
66
+                && in_array( $response['response']['code'], range( 200, 299 ) )
67 67
                 ? 'Works'
68 68
                 : 'Does not work';
69
-            set_transient(Application::ID.'_remote_post_test', $test, static::EXPIRY_TIME);
69
+            set_transient( Application::ID.'_remote_post_test', $test, static::EXPIRY_TIME );
70 70
         }
71 71
         return $test;
72 72
     }
Please login to merge, or discard this patch.
plugin/Blocks/SiteReviewsSummaryBlock.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -50,18 +50,18 @@  discard block
 block discarded – undo
50 50
     /**
51 51
      * @return string
52 52
      */
53
-    public function render(array $attributes)
53
+    public function render( array $attributes )
54 54
     {
55 55
         $attributes['class'] = $attributes['className'];
56
-        $shortcode = glsr(Shortcode::class);
57
-        if ('edit' == filter_input(INPUT_GET, 'context')) {
58
-            $attributes = $this->normalize($attributes);
56
+        $shortcode = glsr( Shortcode::class );
57
+        if( 'edit' == filter_input( INPUT_GET, 'context' ) ) {
58
+            $attributes = $this->normalize( $attributes );
59 59
             $this->filterShortcodeClass();
60
-            if (!$this->hasVisibleFields($shortcode, $attributes)) {
60
+            if( !$this->hasVisibleFields( $shortcode, $attributes ) ) {
61 61
                 $this->filterInterpolation();
62 62
             }
63 63
         }
64
-        return $shortcode->buildShortcode($attributes);
64
+        return $shortcode->buildShortcode( $attributes );
65 65
     }
66 66
 
67 67
     /**
@@ -69,9 +69,9 @@  discard block
 block discarded – undo
69 69
      */
70 70
     protected function filterInterpolation()
71 71
     {
72
-        add_filter('site-reviews/interpolate/reviews-summary', function ($context) {
72
+        add_filter( 'site-reviews/interpolate/reviews-summary', function( $context ) {
73 73
             $context['class'] = 'glsr-default glsr-block-disabled';
74
-            $context['text'] = __('You have hidden all of the fields for this block.', 'site-reviews');
74
+            $context['text'] = __( 'You have hidden all of the fields for this block.', 'site-reviews' );
75 75
             return $context;
76 76
         });
77 77
     }
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
      */
82 82
     protected function filterShortcodeClass()
83 83
     {
84
-        add_filter('site-reviews/style', function () {
84
+        add_filter( 'site-reviews/style', function() {
85 85
             return 'default';
86 86
         });
87 87
     }
Please login to merge, or discard this patch.
plugin/Blocks/SiteReviewsFormBlock.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -38,20 +38,20 @@  discard block
 block discarded – undo
38 38
     /**
39 39
      * @return string
40 40
      */
41
-    public function render(array $attributes)
41
+    public function render( array $attributes )
42 42
     {
43 43
         $attributes['class'] = $attributes['className'];
44
-        $shortcode = glsr(Shortcode::class);
45
-        if ('edit' == filter_input(INPUT_GET, 'context')) {
44
+        $shortcode = glsr( Shortcode::class );
45
+        if( 'edit' == filter_input( INPUT_GET, 'context' ) ) {
46 46
             $this->filterFormFields();
47 47
             $this->filterRatingField();
48 48
             $this->filterShortcodeClass();
49 49
             $this->filterSubmitButton();
50
-            if (!$this->hasVisibleFields($shortcode, $attributes)) {
50
+            if( !$this->hasVisibleFields( $shortcode, $attributes ) ) {
51 51
                 $this->filterInterpolation();
52 52
             }
53 53
         }
54
-        return $shortcode->buildShortcode($attributes);
54
+        return $shortcode->buildShortcode( $attributes );
55 55
     }
56 56
 
57 57
     /**
@@ -59,8 +59,8 @@  discard block
 block discarded – undo
59 59
      */
60 60
     protected function filterFormFields()
61 61
     {
62
-        add_filter('site-reviews/config/forms/submission-form', function (array $config) {
63
-            array_walk($config, function (&$field) {
62
+        add_filter( 'site-reviews/config/forms/submission-form', function( array $config ) {
63
+            array_walk( $config, function( &$field ) {
64 64
                 $field['disabled'] = true;
65 65
                 $field['tabindex'] = '-1';
66 66
             });
@@ -73,9 +73,9 @@  discard block
 block discarded – undo
73 73
      */
74 74
     protected function filterInterpolation()
75 75
     {
76
-        add_filter('site-reviews/interpolate/reviews-form', function ($context) {
76
+        add_filter( 'site-reviews/interpolate/reviews-form', function( $context ) {
77 77
             $context['class'] = 'glsr-default glsr-block-disabled';
78
-            $context['fields'] = __('You have hidden all of the fields for this block.', 'site-reviews');
78
+            $context['fields'] = __( 'You have hidden all of the fields for this block.', 'site-reviews' );
79 79
             $context['response'] = '';
80 80
             $context['submit_button'] = '';
81 81
             return $context;
@@ -87,15 +87,15 @@  discard block
 block discarded – undo
87 87
      */
88 88
     protected function filterRatingField()
89 89
     {
90
-        add_filter('site-reviews/rendered/field', function ($html, $type, $args) {
91
-            if ('rating' == $args['path']) {
90
+        add_filter( 'site-reviews/rendered/field', function( $html, $type, $args ) {
91
+            if( 'rating' == $args['path'] ) {
92 92
                 $stars = '<span class="glsr-stars">';
93
-                $stars.= str_repeat('<span class="glsr-star glsr-star-empty" aria-hidden="true"></span>', 5);
94
-                $stars.= '</span>';
95
-                $html = preg_replace('/(.*)(<select.*)(<\/select>)(.*)/', '$1'.$stars.'$4', $html);
93
+                $stars .= str_repeat( '<span class="glsr-star glsr-star-empty" aria-hidden="true"></span>', 5 );
94
+                $stars .= '</span>';
95
+                $html = preg_replace( '/(.*)(<select.*)(<\/select>)(.*)/', '$1'.$stars.'$4', $html );
96 96
             }
97 97
             return $html;
98
-        }, 10, 3);
98
+        }, 10, 3 );
99 99
     }
100 100
 
101 101
     /**
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
      */
104 104
     protected function filterShortcodeClass()
105 105
     {
106
-        add_filter('site-reviews/style', function () {
106
+        add_filter( 'site-reviews/style', function() {
107 107
             return 'default';
108 108
         });
109 109
     }
@@ -113,8 +113,8 @@  discard block
 block discarded – undo
113 113
      */
114 114
     protected function filterSubmitButton()
115 115
     {
116
-        add_filter('site-reviews/rendered/template/form/submit-button', function ($template) {
117
-            return str_replace('type="submit"', 'tabindex="-1"', $template);
116
+        add_filter( 'site-reviews/rendered/template/form/submit-button', function( $template ) {
117
+            return str_replace( 'type="submit"', 'tabindex="-1"', $template );
118 118
         });
119 119
     }
120 120
 }
Please login to merge, or discard this patch.
plugin/Blocks/BlockGenerator.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -17,18 +17,18 @@  discard block
 block discarded – undo
17 17
     /**
18 18
      * @return array
19 19
      */
20
-    public function normalize(array $attributes)
20
+    public function normalize( array $attributes )
21 21
     {
22
-        $hide = array_flip(explode(',', $attributes['hide']));
22
+        $hide = array_flip( explode( ',', $attributes['hide'] ) );
23 23
         unset($hide['if_empty']);
24
-        $attributes['hide'] = implode(',', array_keys($hide));
25
-        if (!isset($attributes['assigned_to'])) {
24
+        $attributes['hide'] = implode( ',', array_keys( $hide ) );
25
+        if( !isset($attributes['assigned_to']) ) {
26 26
             return $attributes;
27 27
         }
28
-        if ('post_id' == $attributes['assigned_to']) {
28
+        if( 'post_id' == $attributes['assigned_to'] ) {
29 29
             $attributes['assigned_to'] = $attributes['post_id'];
30
-        } elseif ('parent_id' == $attributes['assigned_to']) {
31
-            $attributes['assigned_to'] = wp_get_post_parent_id($attributes['post_id']);
30
+        } elseif( 'parent_id' == $attributes['assigned_to'] ) {
31
+            $attributes['assigned_to'] = wp_get_post_parent_id( $attributes['post_id'] );
32 32
         }
33 33
         return $attributes;
34 34
     }
@@ -36,35 +36,35 @@  discard block
 block discarded – undo
36 36
     /**
37 37
      * @return void
38 38
      */
39
-    public function register($block)
39
+    public function register( $block )
40 40
     {
41
-        if (!function_exists('register_block_type')) {
41
+        if( !function_exists( 'register_block_type' ) ) {
42 42
             return;
43 43
         }
44
-        register_block_type(Application::ID.'/'.$block, [
44
+        register_block_type( Application::ID.'/'.$block, [
45 45
             'attributes' => $this->attributes(),
46 46
             'editor_script' => Application::ID.'/blocks',
47 47
             'editor_style' => Application::ID.'/blocks',
48 48
             'render_callback' => [$this, 'render'],
49 49
             'style' => Application::ID,
50
-        ]);
50
+        ] );
51 51
     }
52 52
 
53 53
     /**
54 54
      * @return void
55 55
      */
56
-    abstract public function render(array $attributes);
56
+    abstract public function render( array $attributes );
57 57
 
58 58
     /**
59 59
      * @param mixed $shortcode
60 60
      * @return bool
61 61
      */
62
-    protected function hasVisibleFields($shortcode, array $attributes)
62
+    protected function hasVisibleFields( $shortcode, array $attributes )
63 63
     {
64
-        $args = $shortcode->normalizeAtts($attributes);
64
+        $args = $shortcode->normalizeAtts( $attributes );
65 65
         $defaults = $shortcode->getHideOptions();
66
-        $hide = array_flip($args['hide']);
66
+        $hide = array_flip( $args['hide'] );
67 67
         unset($defaults['if_empty'], $hide['if_empty']);
68
-        return !empty(array_diff_key($defaults, $hide));
68
+        return !empty(array_diff_key( $defaults, $hide ));
69 69
     }
70 70
 }
Please login to merge, or discard this patch.
plugin/Blocks/SiteReviewsBlock.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -62,21 +62,21 @@  discard block
 block discarded – undo
62 62
     /**
63 63
      * @return string
64 64
      */
65
-    public function render(array $attributes)
65
+    public function render( array $attributes )
66 66
     {
67 67
         $attributes['class'] = $attributes['className'];
68
-        $shortcode = glsr(Shortcode::class);
69
-        if ('edit' == filter_input(INPUT_GET, 'context')) {
70
-            $attributes = $this->normalize($attributes);
68
+        $shortcode = glsr( Shortcode::class );
69
+        if( 'edit' == filter_input( INPUT_GET, 'context' ) ) {
70
+            $attributes = $this->normalize( $attributes );
71 71
             $this->filterReviewLinks();
72 72
             $this->filterShortcodeClass();
73
-            $this->filterShowMoreLinks('content');
74
-            $this->filterShowMoreLinks('response');
75
-            if (!$this->hasVisibleFields($shortcode, $attributes)) {
73
+            $this->filterShowMoreLinks( 'content' );
74
+            $this->filterShowMoreLinks( 'response' );
75
+            if( !$this->hasVisibleFields( $shortcode, $attributes ) ) {
76 76
                 $this->filterInterpolation();
77 77
             }
78 78
         }
79
-        return $shortcode->buildShortcode($attributes);
79
+        return $shortcode->buildShortcode( $attributes );
80 80
     }
81 81
 
82 82
     /**
@@ -84,9 +84,9 @@  discard block
 block discarded – undo
84 84
      */
85 85
     protected function filterInterpolation()
86 86
     {
87
-        add_filter('site-reviews/interpolate/reviews', function ($context) {
87
+        add_filter( 'site-reviews/interpolate/reviews', function( $context ) {
88 88
             $context['class'] = 'glsr-default glsr-block-disabled';
89
-            $context['reviews'] = __('You have hidden all of the fields for this block.', 'site-reviews');
89
+            $context['reviews'] = __( 'You have hidden all of the fields for this block.', 'site-reviews' );
90 90
             return $context;
91 91
         });
92 92
     }
@@ -96,8 +96,8 @@  discard block
 block discarded – undo
96 96
      */
97 97
     protected function filterReviewLinks()
98 98
     {
99
-        add_filter('site-reviews/rendered/template/reviews', function ($template) {
100
-            return str_replace('<a', '<a tabindex="-1"', $template);
99
+        add_filter( 'site-reviews/rendered/template/reviews', function( $template ) {
100
+            return str_replace( '<a', '<a tabindex="-1"', $template );
101 101
         });
102 102
     }
103 103
 
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
      */
107 107
     protected function filterShortcodeClass()
108 108
     {
109
-        add_filter('site-reviews/style', function () {
109
+        add_filter( 'site-reviews/style', function() {
110 110
             return 'default';
111 111
         });
112 112
     }
@@ -115,12 +115,12 @@  discard block
 block discarded – undo
115 115
      * @param string $field
116 116
      * @return void
117 117
      */
118
-    protected function filterShowMoreLinks($field)
118
+    protected function filterShowMoreLinks( $field )
119 119
     {
120
-        add_filter('site-reviews/review/wrap/'.$field, function ($value) {
120
+        add_filter( 'site-reviews/review/wrap/'.$field, function( $value ) {
121 121
             $value = preg_replace(
122 122
                 '/(.*)(<span class="glsr-hidden)(.*)(<\/span>)(.*)/s',
123
-                '$1... <a href="#" class="glsr-read-more" tabindex="-1">'.__('Show more', 'site-reviews').'</a>$5',
123
+                '$1... <a href="#" class="glsr-read-more" tabindex="-1">'.__( 'Show more', 'site-reviews' ).'</a>$5',
124 124
                 $value
125 125
             );
126 126
             return $value;
Please login to merge, or discard this patch.