Passed
Push — master ( 742cf3...3c2230 )
by Paul
04:44
created
plugin/Actions.php 1 patch
Spacing   +47 added lines, -47 removed lines patch added patch discarded remove patch
@@ -48,53 +48,53 @@
 block discarded – undo
48 48
 	 */
49 49
 	public function run()
50 50
 	{
51
-		add_action( 'admin_enqueue_scripts',                        [$this->admin, 'enqueueAssets'] );
52
-		add_action( 'admin_init',                                   [$this->admin, 'registerShortcodeButtons'] );
53
-		add_action( 'edit_form_after_title',                        [$this->admin, 'renderReviewEditor'] );
54
-		add_action( 'edit_form_top',                                [$this->admin, 'renderReviewNotice'] );
55
-		add_action( 'media_buttons',                                [$this->admin, 'renderTinymceButton'], 11 );
56
-		add_action( 'plugins_loaded',                               [$this->app, 'getDefaults'], 11 );
57
-		add_action( 'plugins_loaded',                               [$this->app, 'registerAddons'] );
58
-		add_action( 'plugins_loaded',                               [$this->app, 'registerLanguages'] );
59
-		add_action( 'plugins_loaded',                               [$this->app, 'registerReviewTypes'] );
60
-		add_action( 'upgrader_process_complete',                    [$this->app, 'upgraded'], 10, 2 );
61
-		add_action( 'admin_enqueue_scripts',                        [$this->editor, 'customizePostStatusLabels'] );
62
-		add_action( 'site-reviews/create/review',                   [$this->editor, 'onCreateReview'], 10, 3 );
63
-		add_action( 'before_delete_post',                           [$this->editor, 'onDeleteReview'] );
64
-		add_action( 'save_post_'.Application::POST_TYPE,            [$this->editor, 'onSaveReview'], 20, 2 );
65
-		add_action( 'add_meta_boxes',                               [$this->editor, 'registerMetaBoxes'] );
66
-		add_action( 'admin_print_scripts',                          [$this->editor, 'removeAutosave'], 999 );
67
-		add_action( 'admin_menu',                                   [$this->editor, 'removeMetaBoxes'] );
68
-		add_action( 'post_submitbox_misc_actions',                  [$this->editor, 'renderPinnedInPublishMetaBox'] );
69
-		add_action( 'admin_action_revert',                          [$this->editor, 'revertReview'] );
70
-		add_action( 'save_post_'.Application::POST_TYPE,            [$this->editor, 'saveMetaboxes'] );
71
-		add_action( 'admin_action_approve',                         [$this->listtable, 'approve'] );
72
-		add_action( 'bulk_edit_custom_box',                         [$this->listtable, 'renderBulkEditFields'], 10, 2 );
73
-		add_action( 'restrict_manage_posts',                        [$this->listtable, 'renderColumnFilters'] );
74
-		add_action( 'manage_posts_custom_column',                   [$this->listtable, 'renderColumnValues'], 10, 2 );
75
-		add_action( 'save_post_'.Application::POST_TYPE,            [$this->listtable, 'saveBulkEditFields'] );
76
-		add_action( 'pre_get_posts',                                [$this->listtable, 'setQueryForColumn'] );
77
-		add_action( 'admin_action_unapprove',                       [$this->listtable, 'unapprove'] );
78
-		add_action( 'init',                                         [$this->main, 'registerPostType'], 8 );
79
-		add_action( 'init',                                         [$this->main, 'registerShortcodes'] );
80
-		add_action( 'init',                                         [$this->main, 'registerTaxonomy'] );
81
-		add_action( 'widgets_init',                                 [$this->main, 'registerWidgets'] );
82
-		add_action( 'admin_menu',                                   [$this->menu, 'registerMenuCount'] );
83
-		add_action( 'admin_menu',                                   [$this->menu, 'registerSubMenus'] );
84
-		add_action( 'admin_init',                                   [$this->menu, 'setCustomPermissions'], 999 );
85
-		add_action( 'wp_enqueue_scripts',                           [$this->public, 'enqueueAssets'], 999 );
86
-		add_action( 'wp_footer',                                    [$this->public, 'renderSchema'] );
87
-		add_action( 'admin_init',                                   [$this->router, 'routeAdminPostRequest'] );
88
-		add_action( 'wp_ajax_'.Application::PREFIX.'action',        [$this->router, 'routeAjaxRequest'] );
51
+		add_action( 'admin_enqueue_scripts', [$this->admin, 'enqueueAssets'] );
52
+		add_action( 'admin_init', [$this->admin, 'registerShortcodeButtons'] );
53
+		add_action( 'edit_form_after_title', [$this->admin, 'renderReviewEditor'] );
54
+		add_action( 'edit_form_top', [$this->admin, 'renderReviewNotice'] );
55
+		add_action( 'media_buttons', [$this->admin, 'renderTinymceButton'], 11 );
56
+		add_action( 'plugins_loaded', [$this->app, 'getDefaults'], 11 );
57
+		add_action( 'plugins_loaded', [$this->app, 'registerAddons'] );
58
+		add_action( 'plugins_loaded', [$this->app, 'registerLanguages'] );
59
+		add_action( 'plugins_loaded', [$this->app, 'registerReviewTypes'] );
60
+		add_action( 'upgrader_process_complete', [$this->app, 'upgraded'], 10, 2 );
61
+		add_action( 'admin_enqueue_scripts', [$this->editor, 'customizePostStatusLabels'] );
62
+		add_action( 'site-reviews/create/review', [$this->editor, 'onCreateReview'], 10, 3 );
63
+		add_action( 'before_delete_post', [$this->editor, 'onDeleteReview'] );
64
+		add_action( 'save_post_'.Application::POST_TYPE, [$this->editor, 'onSaveReview'], 20, 2 );
65
+		add_action( 'add_meta_boxes', [$this->editor, 'registerMetaBoxes'] );
66
+		add_action( 'admin_print_scripts', [$this->editor, 'removeAutosave'], 999 );
67
+		add_action( 'admin_menu', [$this->editor, 'removeMetaBoxes'] );
68
+		add_action( 'post_submitbox_misc_actions', [$this->editor, 'renderPinnedInPublishMetaBox'] );
69
+		add_action( 'admin_action_revert', [$this->editor, 'revertReview'] );
70
+		add_action( 'save_post_'.Application::POST_TYPE, [$this->editor, 'saveMetaboxes'] );
71
+		add_action( 'admin_action_approve', [$this->listtable, 'approve'] );
72
+		add_action( 'bulk_edit_custom_box', [$this->listtable, 'renderBulkEditFields'], 10, 2 );
73
+		add_action( 'restrict_manage_posts', [$this->listtable, 'renderColumnFilters'] );
74
+		add_action( 'manage_posts_custom_column', [$this->listtable, 'renderColumnValues'], 10, 2 );
75
+		add_action( 'save_post_'.Application::POST_TYPE, [$this->listtable, 'saveBulkEditFields'] );
76
+		add_action( 'pre_get_posts', [$this->listtable, 'setQueryForColumn'] );
77
+		add_action( 'admin_action_unapprove', [$this->listtable, 'unapprove'] );
78
+		add_action( 'init', [$this->main, 'registerPostType'], 8 );
79
+		add_action( 'init', [$this->main, 'registerShortcodes'] );
80
+		add_action( 'init', [$this->main, 'registerTaxonomy'] );
81
+		add_action( 'widgets_init', [$this->main, 'registerWidgets'] );
82
+		add_action( 'admin_menu', [$this->menu, 'registerMenuCount'] );
83
+		add_action( 'admin_menu', [$this->menu, 'registerSubMenus'] );
84
+		add_action( 'admin_init', [$this->menu, 'setCustomPermissions'], 999 );
85
+		add_action( 'wp_enqueue_scripts', [$this->public, 'enqueueAssets'], 999 );
86
+		add_action( 'wp_footer', [$this->public, 'renderSchema'] );
87
+		add_action( 'admin_init', [$this->router, 'routeAdminPostRequest'] );
88
+		add_action( 'wp_ajax_'.Application::PREFIX.'action', [$this->router, 'routeAjaxRequest'] );
89 89
 		add_action( 'wp_ajax_nopriv_'.Application::PREFIX.'action', [$this->router, 'routeAjaxRequest'] );
90
-		add_action( 'init',                                         [$this->router, 'routePublicPostRequest'] );
91
-		add_action( 'admin_init',                                   [$this->router, 'routeWebhookRequest'] );
92
-		add_action( 'site-reviews/schedule/session/purge',          [$this->session, 'deleteExpiredSessions'] );
93
-		add_action( 'admin_init',                                   [$this->settings, 'registerSettings'] );
94
-		add_action( Application::TAXONOMY.'_term_edit_form_top',    [$this->taxonomy, 'disableParents'] );
95
-		add_action( Application::TAXONOMY.'_term_new_form_tag',     [$this->taxonomy, 'disableParents'] );
96
-		add_action( Application::TAXONOMY.'_add_form_fields',       [$this->taxonomy, 'enableParents'] );
97
-		add_action( Application::TAXONOMY.'_edit_form',             [$this->taxonomy, 'enableParents'] );
98
-		add_action( 'restrict_manage_posts',                        [$this->taxonomy, 'renderTaxonomyFilter'], 9 );
90
+		add_action( 'init', [$this->router, 'routePublicPostRequest'] );
91
+		add_action( 'admin_init', [$this->router, 'routeWebhookRequest'] );
92
+		add_action( 'site-reviews/schedule/session/purge', [$this->session, 'deleteExpiredSessions'] );
93
+		add_action( 'admin_init', [$this->settings, 'registerSettings'] );
94
+		add_action( Application::TAXONOMY.'_term_edit_form_top', [$this->taxonomy, 'disableParents'] );
95
+		add_action( Application::TAXONOMY.'_term_new_form_tag', [$this->taxonomy, 'disableParents'] );
96
+		add_action( Application::TAXONOMY.'_add_form_fields', [$this->taxonomy, 'enableParents'] );
97
+		add_action( Application::TAXONOMY.'_edit_form', [$this->taxonomy, 'enableParents'] );
98
+		add_action( 'restrict_manage_posts', [$this->taxonomy, 'renderTaxonomyFilter'], 9 );
99 99
 	}
100 100
 }
Please login to merge, or discard this patch.
helpers.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
  */
7 7
 function glsr( $alias = null ) {
8 8
 	$app = \GeminiLabs\SiteReviews\Application::load();
9
-	return !empty( $alias )
9
+	return !empty($alias)
10 10
 		? $app->make( $alias )
11 11
 		: $app;
12 12
 }
@@ -15,10 +15,10 @@  discard block
 block discarded – undo
15 15
  * @return \WP_Screen|object
16 16
  */
17 17
 function glsr_current_screen() {
18
-	if( function_exists( 'get_current_screen' )) {
18
+	if( function_exists( 'get_current_screen' ) ) {
19 19
 		$screen = get_current_screen();
20 20
 	}
21
-	return empty( $screen )
21
+	return empty($screen)
22 22
 		? (object)array_fill_keys( ['base', 'id', 'post_type'], null )
23 23
 		: $screen;
24 24
 }
@@ -53,11 +53,11 @@  discard block
 block discarded – undo
53 53
  */
54 54
 function glsr_log() {
55 55
 	$args = func_get_args();
56
-	$context = isset( $args[1] )
56
+	$context = isset($args[1])
57 57
 		? $args[1]
58 58
 		: [];
59 59
 	$console = glsr( 'Modules\Console' );
60
-	return !empty( $args )
60
+	return !empty($args)
61 61
 		? $console->log( 'debug', $args[0], $context )
62 62
 		: $console;
63 63
 }
Please login to merge, or discard this patch.
plugin/Controllers/AjaxController.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 	{
25 25
 		wp_send_json( glsr( Html::class )->renderPartial( 'link', [
26 26
 			'post_id' => $request['ID'],
27
-		]));
27
+		] ) );
28 28
 	}
29 29
 
30 30
 	/**
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 	 */
33 33
 	public function routerChangeReviewStatus( array $request )
34 34
 	{
35
-		wp_send_json( $this->execute( new ChangeStatus( $request )));
35
+		wp_send_json( $this->execute( new ChangeStatus( $request ) ) );
36 36
 	}
37 37
 
38 38
 	/**
@@ -41,10 +41,10 @@  discard block
 block discarded – undo
41 41
 	public function routerClearConsole()
42 42
 	{
43 43
 		glsr( AdminController::class )->routerClearConsole();
44
-		wp_send_json([
44
+		wp_send_json( [
45 45
 			'console' => glsr( Console::class )->get(),
46 46
 			'notices' => glsr( Notice::class )->get(),
47
-		]);
47
+		] );
48 48
 	}
49 49
 
50 50
 	/**
@@ -54,9 +54,9 @@  discard block
 block discarded – undo
54 54
 	{
55 55
 		$shortcode = $request['shortcode'];
56 56
 		$response = false;
57
-		if( array_key_exists( $shortcode, glsr()->mceShortcodes )) {
57
+		if( array_key_exists( $shortcode, glsr()->mceShortcodes ) ) {
58 58
 			$data = glsr()->mceShortcodes[$shortcode];
59
-			if( !empty( $data['errors'] )) {
59
+			if( !empty($data['errors']) ) {
60 60
 				$data['btn_okay'] = [esc_html__( 'Okay', 'site-reviews' )];
61 61
 			}
62 62
 			$response = [
@@ -76,10 +76,10 @@  discard block
 block discarded – undo
76 76
 	public function routerSearchPosts( array $request )
77 77
 	{
78 78
 		$results = glsr( Database::class )->searchPosts( $request['search'] );
79
-		wp_send_json_success([
79
+		wp_send_json_success( [
80 80
 			'empty' => '<div>'.__( 'Nothing found.', 'site-reviews' ).'</div>',
81 81
 			'items' => $results,
82
-		]);
82
+		] );
83 83
 	}
84 84
 
85 85
 	/**
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
 	 */
88 88
 	public function routerSearchTranslations( array $request )
89 89
 	{
90
-		if( empty( $request['exclude'] )) {
90
+		if( empty($request['exclude']) ) {
91 91
 			$request['exclude'] = [];
92 92
 		}
93 93
 		$results = glsr( Translator::class )
@@ -95,10 +95,10 @@  discard block
 block discarded – undo
95 95
 			->exclude()
96 96
 			->exclude( $request['exclude'] )
97 97
 			->renderResults();
98
-		wp_send_json_success([
98
+		wp_send_json_success( [
99 99
 			'empty' => '<div>'.__( 'Nothing found.', 'site-reviews' ).'</div>',
100 100
 			'items' => $results,
101
-		]);
101
+		] );
102 102
 	}
103 103
 
104 104
 	/**
@@ -107,11 +107,11 @@  discard block
 block discarded – undo
107 107
 	public function routerSubmitReview( array $request )
108 108
 	{
109 109
 		glsr( PublicController::class )->routerSubmitReview( $request );
110
-		wp_send_json([
110
+		wp_send_json( [
111 111
 			'errors' => glsr( Session::class )->get( $request['form_id'].'errors', false, true ),
112
-			'message' => wpautop( glsr( Session::class )->get( $request['form_id'].'message', '', true )),
112
+			'message' => wpautop( glsr( Session::class )->get( $request['form_id'].'message', '', true ) ),
113 113
 			'recaptcha' => glsr( Session::class )->get( $request['form_id'].'recaptcha', false, true ),
114
-		]);
114
+		] );
115 115
 	}
116 116
 
117 117
 	/**
@@ -119,10 +119,10 @@  discard block
 block discarded – undo
119 119
 	 */
120 120
 	public function routerTogglePinned( array $request )
121 121
 	{
122
-		$isPinned = $this->execute( new TogglePinned( $request ));
123
-		wp_send_json([
122
+		$isPinned = $this->execute( new TogglePinned( $request ) );
123
+		wp_send_json( [
124 124
 			'notices' => glsr( Notice::class )->get(),
125 125
 			'pinned' => $isPinned,
126
-		]);
126
+		] );
127 127
 	}
128 128
 }
Please login to merge, or discard this patch.
plugin/Controllers/MenuController.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -21,17 +21,17 @@  discard block
 block discarded – undo
21 21
 	{
22 22
 		global $menu, $typenow;
23 23
 		foreach( $menu as $key => $value ) {
24
-			if( !isset( $value[2] ) || $value[2] != 'edit.php?post_type='.Application::POST_TYPE )continue;
24
+			if( !isset($value[2]) || $value[2] != 'edit.php?post_type='.Application::POST_TYPE )continue;
25 25
 			$postCount = wp_count_posts( Application::POST_TYPE );
26 26
 			$pendingCount = glsr( Builder::class )->span( number_format_i18n( $postCount->pending ), [
27 27
 				'class' => 'pending-count',
28
-			]);
28
+			] );
29 29
 			$awaitingModeration = glsr( Builder::class )->span( $pendingCount, [
30 30
 				'class' => 'awaiting-mod count-'.$postCount->pending,
31
-			]);
31
+			] );
32 32
 			$menu[$key][0] .= ' '.$awaitingModeration;
33 33
 			if( $typenow === Application::POST_TYPE ) {
34
-				$menu[$key][4].= ' current';
34
+				$menu[$key][4] .= ' current';
35 35
 			}
36 36
 			break;
37 37
 		}
@@ -48,11 +48,11 @@  discard block
 block discarded – undo
48 48
 			'tools' => __( 'Tools', 'site-reviews' ),
49 49
 			'addons' => __( 'Add-Ons', 'site-reviews' ),
50 50
 			'documentation' => __( 'Documentation', 'site-reviews' ),
51
-		]);
51
+		] );
52 52
 		foreach( $pages as $slug => $title ) {
53 53
 			$method = glsr( Helper::class )->buildMethodName( 'render-'.$slug.'-menu' );
54 54
 			$callback = apply_filters( 'site-reviews/addon/submenu/callback', [$this, $method], $slug );
55
-			if( !is_callable( $callback ))continue;
55
+			if( !is_callable( $callback ) )continue;
56 56
 			add_submenu_page( 'edit.php?post_type='.Application::POST_TYPE, $title, $title, Application::CAPABILITY, $slug, $callback );
57 57
 		}
58 58
 	}
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 	{
67 67
 		$this->renderPage( 'addons', [
68 68
 			'template' => glsr( Template::class ),
69
-		]);
69
+		] );
70 70
 	}
71 71
 
72 72
 	/**
@@ -82,10 +82,10 @@  discard block
 block discarded – undo
82 82
 			'shortcodes' => __( 'Shortcodes', 'site-reviews' ),
83 83
 			'hooks' => __( 'Hooks', 'site-reviews' ),
84 84
 			'functions' => __( 'Functions', 'site-reviews' ),
85
-		]);
85
+		] );
86 86
 		$this->renderPage( 'documentation', [
87 87
 			'tabs' => $tabs,
88
-		]);
88
+		] );
89 89
 	}
90 90
 
91 91
 	/**
@@ -102,14 +102,14 @@  discard block
 block discarded – undo
102 102
 			'schema' => __( 'Schema', 'site-reviews' ),
103 103
 			'translations' => __( 'Translations', 'site-reviews' ),
104 104
 			'licenses' => __( 'Licenses', 'site-reviews' ),
105
-		]);
106
-		if( !apply_filters( 'site-reviews/addon/licenses', false )) {
107
-			unset( $tabs['licenses'] );
105
+		] );
106
+		if( !apply_filters( 'site-reviews/addon/licenses', false ) ) {
107
+			unset($tabs['licenses']);
108 108
 		}
109 109
 		$this->renderPage( 'settings', [
110 110
 			'html' => glsr( Html::class ),
111 111
 			'tabs' => $tabs,
112
-		]);
112
+		] );
113 113
 	}
114 114
 
115 115
 	/**
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
 			'import-export' => __( 'Import/Export', 'site-reviews' ),
124 124
 			'console' => __( 'Console', 'site-reviews' ),
125 125
 			'system-info' => __( 'System Info', 'site-reviews' ),
126
-		]);
126
+		] );
127 127
 		$this->renderPage( 'tools', [
128 128
 			'data' => [
129 129
 				'context' => [
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
 			],
135 135
 			'html' => glsr( Html::class ),
136 136
 			'tabs' => $tabs,
137
-		]);
137
+		] );
138 138
 	}
139 139
 
140 140
 	/**
Please login to merge, or discard this patch.
plugin/Database/QueryBuilder.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -16,11 +16,11 @@  discard block
 block discarded – undo
16 16
 	{
17 17
 		$queries = [];
18 18
 		foreach( $keys as $key ) {
19
-			if( !array_key_exists( $key, $values ))continue;
19
+			if( !array_key_exists( $key, $values ) )continue;
20 20
 			$methodName = glsr( Helper::class )->buildMethodName( $key, __FUNCTION__ );
21
-			if( !method_exists( $this, $methodName ))continue;
21
+			if( !method_exists( $this, $methodName ) )continue;
22 22
 			$query = call_user_func( [$this, $methodName], $values[$key] );
23
-			if( is_array( $query )) {
23
+			if( is_array( $query ) ) {
24 24
 				$queries[] = $query;
25 25
 			}
26 26
 		}
@@ -35,11 +35,11 @@  discard block
 block discarded – undo
35 35
 	 */
36 36
 	public function buildSqlOr( $values, $sprintfFormat )
37 37
 	{
38
-		if( !is_array( $values )) {
38
+		if( !is_array( $values ) ) {
39 39
 			$values = explode( ',', $values );
40 40
 		}
41
-		$values = array_filter( array_map( 'trim', (array)$values ));
42
-		$values = array_map( function( $value ) use( $sprintfFormat ) {
41
+		$values = array_filter( array_map( 'trim', (array)$values ) );
42
+		$values = array_map( function( $value ) use($sprintfFormat) {
43 43
 			return sprintf( $sprintfFormat, $value );
44 44
 		}, $values );
45 45
 		return implode( ' OR ', $values );
@@ -54,11 +54,11 @@  discard block
 block discarded – undo
54 54
 	 */
55 55
 	public function filterSearchByTitle( $search, WP_Query $query )
56 56
 	{
57
-		if( empty( $search ) || empty( $query->get( 'search_terms' ))) {
57
+		if( empty($search) || empty($query->get( 'search_terms' )) ) {
58 58
 			return $search;
59 59
 		}
60 60
 		global $wpdb;
61
-		$n = empty( $query->get( 'exact' ))
61
+		$n = empty($query->get( 'exact' ))
62 62
 			? '%'
63 63
 			: '';
64 64
 		$search = [];
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
 			? Application::PAGED_QUERY_VAR
83 83
 			: 'page';
84 84
 		return $isEnabled
85
-			? max( 1, intval( get_query_var( $pagedQuery )))
85
+			? max( 1, intval( get_query_var( $pagedQuery ) ) )
86 86
 			: 1;
87 87
 	}
88 88
 
@@ -92,11 +92,11 @@  discard block
 block discarded – undo
92 92
 	 */
93 93
 	protected function buildQueryAssignedTo( $value )
94 94
 	{
95
-		if( empty( $value ))return;
95
+		if( empty($value) )return;
96 96
 		return [
97 97
 			'compare' => 'IN',
98 98
 			'key' => 'assigned_to',
99
-			'value' => array_filter( array_map( 'trim', explode( ',', $value )), 'is_numeric' ),
99
+			'value' => array_filter( array_map( 'trim', explode( ',', $value ) ), 'is_numeric' ),
100 100
 		];
101 101
 	}
102 102
 
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
 	 */
107 107
 	protected function buildQueryCategory( $value )
108 108
 	{
109
-		if( empty( $value ))return;
109
+		if( empty($value) )return;
110 110
 		return [
111 111
 			'field' => 'term_id',
112 112
 			'taxonomy' => Application::TAXONOMY,
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 	 */
121 121
 	protected function buildQueryRating( $value )
122 122
 	{
123
-		if( !is_numeric( $value ) || !in_array( intval( $value ), range( 1, 5 )))return;
123
+		if( !is_numeric( $value ) || !in_array( intval( $value ), range( 1, 5 ) ) )return;
124 124
 		return [
125 125
 			'compare' => '>=',
126 126
 			'key' => 'rating',
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
 	 */
135 135
 	protected function buildQueryType( $value )
136 136
 	{
137
-		if( in_array( $value, ['','all'] ))return;
137
+		if( in_array( $value, ['', 'all'] ) )return;
138 138
 		return [
139 139
 			'key' => 'review_type',
140 140
 			'value' => $value,
Please login to merge, or discard this patch.
plugin/Modules/Validator/ValidateReview.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 		$this->validateBlacklist();
62 62
 		$this->validateAkismet();
63 63
 		$this->validateRecaptcha();
64
-		if( !empty( $this->error )) {
64
+		if( !empty($this->error) ) {
65 65
 			$this->setSessionValues( 'message', $this->error );
66 66
 		}
67 67
 		return $this;
@@ -86,10 +86,10 @@  discard block
 block discarded – undo
86 86
 			apply_filters( 'site-reviews/validation/rules', static::VALIDATION_RULES ),
87 87
 			$this->getOption( 'settings.submissions.required', [] )
88 88
 		);
89
-		$excluded = isset( $request['excluded'] )
89
+		$excluded = isset($request['excluded'])
90 90
 			? (array)json_decode( $request['excluded'] )
91 91
 			: [];
92
-		return array_diff_key( $rules, array_flip( $excluded ));
92
+		return array_diff_key( $rules, array_flip( $excluded ) );
93 93
 	}
94 94
 
95 95
 	/**
@@ -101,14 +101,14 @@  discard block
 block discarded – undo
101 101
 		if( !$integration ) {
102 102
 			return true;
103 103
 		}
104
-		if( empty( $this->request['recaptcha-token'] )) {
104
+		if( empty($this->request['recaptcha-token']) ) {
105 105
 			return null; // @see $this->validateRecaptcha()
106 106
 		}
107 107
 		if( $integration == 'custom' ) {
108 108
 			return $this->isRecaptchaValid( $this->request['recaptcha-token'] );
109 109
 		}
110 110
 		if( $integration == 'invisible-recaptcha' ) {
111
-			return boolval( apply_filters( 'google_invre_is_valid_request_filter', true ));
111
+			return boolval( apply_filters( 'google_invre_is_valid_request_filter', true ) );
112 112
 		}
113 113
 		return false;
114 114
 	}
@@ -119,17 +119,17 @@  discard block
 block discarded – undo
119 119
 	 */
120 120
 	protected function isRecaptchaValid( $recaptchaToken )
121 121
 	{
122
-		$endpoint = add_query_arg([
122
+		$endpoint = add_query_arg( [
123 123
 			'remoteip' => glsr( Helper::class )->getIpAddress(),
124 124
 			'response' => $recaptchaToken,
125 125
 			'secret' => $this->getOption( 'settings.submissions.recaptcha.secret' ),
126 126
 		], static::RECAPTCHA_ENDPOINT );
127
-		if( is_wp_error( $response = wp_remote_get( $endpoint ))) {
127
+		if( is_wp_error( $response = wp_remote_get( $endpoint ) ) ) {
128 128
 			glsr_log()->error( $response->get_error_message() );
129 129
 			return false;
130 130
 		}
131
-		$response = json_decode( wp_remote_retrieve_body( $response ));
132
-		if( !empty( $response->success )) {
131
+		$response = json_decode( wp_remote_retrieve_body( $response ) );
132
+		if( !empty($response->success) ) {
133 133
 			return boolval( $response->success );
134 134
 		}
135 135
 		$errorCodes = [
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
 	{
153 153
 		$rules = $this->getValidationRules( $request );
154 154
 		$errors = glsr( Validator::class )->validate( $request, $rules );
155
-		if( empty( $errors )) {
155
+		if( empty($errors) ) {
156 156
 			return true;
157 157
 		}
158 158
 		$this->setSessionValues( 'errors', $errors );
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
 	protected function setSessionValues( $type, $value, $loggedMessage = '' )
170 170
 	{
171 171
 		glsr( Session::class )->set( $this->form_id.$type, $value );
172
-		if( !empty( $loggedMessage )) {
172
+		if( !empty($loggedMessage) ) {
173 173
 			glsr_log()->warning( $loggedMessage );
174 174
 			glsr_log()->warning( $this->request );
175 175
 		}
@@ -180,8 +180,8 @@  discard block
 block discarded – undo
180 180
 	 */
181 181
 	protected function validateAkismet()
182 182
 	{
183
-		if( !empty( $this->error ))return;
184
-		if( !glsr( Akismet::class )->isSpam( $this->request ))return;
183
+		if( !empty($this->error) )return;
184
+		if( !glsr( Akismet::class )->isSpam( $this->request ) )return;
185 185
 		$this->setSessionValues( 'errors', [], 'Akismet caught a spam submission:' );
186 186
 		$this->error = __( 'Your review cannot be submitted at this time. Please try again later.', 'site-reviews' );
187 187
 	}
@@ -191,8 +191,8 @@  discard block
 block discarded – undo
191 191
 	 */
192 192
 	protected function validateBlacklist()
193 193
 	{
194
-		if( !empty( $this->error ))return;
195
-		if( !glsr( Blacklist::class )->isBlacklisted( $this->request ))return;
194
+		if( !empty($this->error) )return;
195
+		if( !glsr( Blacklist::class )->isBlacklisted( $this->request ) )return;
196 196
 		$blacklistAction = $this->getOption( 'settings.submissions.blacklist.action' );
197 197
 		if( $blacklistAction == 'reject' ) {
198 198
 			$this->setSessionValues( 'errors', [], 'Blacklisted submission detected:' );
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
 	 */
208 208
 	protected function validateCustom()
209 209
 	{
210
-		if( !empty( $this->error ))return;
210
+		if( !empty($this->error) )return;
211 211
 		$validated = apply_filters( 'site-reviews/validate/review/submission', true, $this->request );
212 212
 		if( $validated === true )return;
213 213
 		$this->setSessionValues( 'errors', [] );
@@ -222,8 +222,8 @@  discard block
 block discarded – undo
222 222
 	 */
223 223
 	protected function validateHoneyPot()
224 224
 	{
225
-		if( !empty( $this->error ))return;
226
-		if( empty( $this->request['gotcha'] ))return;
225
+		if( !empty($this->error) )return;
226
+		if( empty($this->request['gotcha']) )return;
227 227
 		$this->setSessionValues( 'errors', [], 'The Honeypot caught a bad submission:' );
228 228
 		$this->error = __( 'The review submission failed. Please notify the site administrator.', 'site-reviews' );
229 229
 	}
@@ -233,9 +233,9 @@  discard block
 block discarded – undo
233 233
 	 */
234 234
 	protected function validateRecaptcha()
235 235
 	{
236
-		if( !empty( $this->error ))return;
236
+		if( !empty($this->error) )return;
237 237
 		$isValid = $this->isRecaptchaResponseValid();
238
-		if( is_null( $isValid )) {
238
+		if( is_null( $isValid ) ) {
239 239
 			$this->setSessionValues( 'recaptcha', true );
240 240
 			$this->recaptchaIsUnset = true;
241 241
 		}
@@ -251,11 +251,11 @@  discard block
 block discarded – undo
251 251
 	 */
252 252
 	protected function validateRequest( array $request )
253 253
 	{
254
-		if( !$this->isRequestValid( $request )) {
254
+		if( !$this->isRequestValid( $request ) ) {
255 255
 			$this->error = __( 'Please fix the submission errors.', 'site-reviews' );
256 256
 			return $request;
257 257
 		}
258
-		if( empty( $request['title'] )) {
258
+		if( empty($request['title']) ) {
259 259
 			$request['title'] = __( 'No Title', 'site-reviews' );
260 260
 		}
261 261
 		return array_merge( glsr( ValidateReviewDefaults::class )->defaults(), $request );
Please login to merge, or discard this patch.
plugin/Modules/Schema/BaseType.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 	 * @param mixed $default
94 94
 	 * @return mixed
95 95
 	 */
96
-	public function getProperty( $property, $default = null)
96
+	public function getProperty( $property, $default = null )
97 97
 	{
98 98
 		return $this->properties[$property] ?? $default;
99 99
 	}
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
 	 */
162 162
 	public function offsetUnset( $offset )
163 163
 	{
164
-		unset( $this->properties[$offset] );
164
+		unset($this->properties[$offset]);
165 165
 	}
166 166
 
167 167
 	/**
@@ -207,16 +207,16 @@  discard block
 block discarded – undo
207 207
 	 */
208 208
 	protected function getParents( $parents = null )
209 209
 	{
210
-		if( !isset( $parents )) {
210
+		if( !isset($parents) ) {
211 211
 			$parents = $this->parents;
212 212
 		}
213 213
 		$newParents = $parents;
214 214
 		foreach( $parents as $parent ) {
215 215
 			$parentClass = glsr( Helper::class )->buildClassName( $parent, __NAMESPACE__ );
216
-			if( !class_exists( $parentClass ))continue;
217
-			$newParents = array_merge( $newParents, $this->getParents( (new $parentClass)->parents ));
216
+			if( !class_exists( $parentClass ) )continue;
217
+			$newParents = array_merge( $newParents, $this->getParents( (new $parentClass)->parents ) );
218 218
 		}
219
-		return array_values( array_unique( $newParents ));
219
+		return array_values( array_unique( $newParents ) );
220 220
 	}
221 221
 
222 222
 	/**
@@ -227,8 +227,8 @@  discard block
 block discarded – undo
227 227
 		$parents = $this->getParents();
228 228
 		foreach( $parents as $parent ) {
229 229
 			$parentClass = glsr( Helper::class )->buildClassName( $parent, __NAMESPACE__ );
230
-			if( !class_exists( $parentClass ))continue;
231
-			$this->allowed = array_values( array_unique( array_merge( (new $parentClass)->allowed, $this->allowed )));
230
+			if( !class_exists( $parentClass ) )continue;
231
+			$this->allowed = array_values( array_unique( array_merge( (new $parentClass)->allowed, $this->allowed ) ) );
232 232
 		}
233 233
 	}
234 234
 
@@ -238,17 +238,17 @@  discard block
 block discarded – undo
238 238
 	 */
239 239
 	protected function serializeProperty( $property )
240 240
 	{
241
-		if( is_array( $property )) {
241
+		if( is_array( $property ) ) {
242 242
 			return array_map( [$this, 'serializeProperty'], $property );
243 243
 		}
244 244
 		if( $property instanceof Type ) {
245 245
 			$property = $property->toArray();
246
-			unset( $property['@context'] );
246
+			unset($property['@context']);
247 247
 		}
248 248
 		if( $property instanceof DateTimeInterface ) {
249 249
 			$property = $property->format( DateTime::ATOM );
250 250
 		}
251
-		if( is_object( $property )) {
251
+		if( is_object( $property ) ) {
252 252
 			throw new InvalidProperty();
253 253
 		}
254 254
 		return $property;
Please login to merge, or discard this patch.
plugin/Modules/Email.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -90,8 +90,8 @@  discard block
 block discarded – undo
90 90
 	 */
91 91
 	public function buildPlainTextMessage( PHPMailer $phpmailer )
92 92
 	{
93
-		if( empty( $this->email ))return;
94
-		if( $phpmailer->ContentType === 'text/plain' || !empty( $phpmailer->AltBody ))return;
93
+		if( empty($this->email) )return;
94
+		if( $phpmailer->ContentType === 'text/plain' || !empty($phpmailer->AltBody) )return;
95 95
 		$message = $this->stripHtmlTags( $phpmailer->Body );
96 96
 		$phpmailer->AltBody = apply_filters( 'site-reviews/email/message', $message, 'text', $this );
97 97
 	}
@@ -104,10 +104,10 @@  discard block
 block discarded – undo
104 104
 		$allowed = [
105 105
 			'bcc', 'cc', 'from', 'reply-to',
106 106
 		];
107
-		$headers = array_intersect_key( $this->email, array_flip( $allowed ));
107
+		$headers = array_intersect_key( $this->email, array_flip( $allowed ) );
108 108
 		$headers = array_filter( $headers );
109 109
 		foreach( $headers as $key => $value ) {
110
-			unset( $headers[$key] );
110
+			unset($headers[$key]);
111 111
 			$headers[] = $key.': '.$value;
112 112
 		}
113 113
 		$headers[] = 'Content-Type: text/html';
@@ -119,16 +119,16 @@  discard block
 block discarded – undo
119 119
 	 */
120 120
 	protected function buildHtmlMessage()
121 121
 	{
122
-		$template = trim( glsr( OptionManager::class )->get( 'settings.general.notification_message' ));
123
-		if( !empty( $template )) {
122
+		$template = trim( glsr( OptionManager::class )->get( 'settings.general.notification_message' ) );
123
+		if( !empty($template) ) {
124 124
 			$message = glsr( Template::class )->interpolate( $template, $this->email['template-tags'] );
125 125
 		}
126 126
 		else if( $this->email['template'] ) {
127 127
 			$message = glsr( Template::class )->build( 'templates/'.$this->email['template'], [
128 128
 				'context' => $this->email['template-tags'],
129
-			]);
129
+			] );
130 130
 		}
131
-		if( !isset( $message )) {
131
+		if( !isset($message) ) {
132 132
 			$message = $this->email['message'];
133 133
 		}
134 134
 		$message = $this->email['before'].$message.$this->email['after'];
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
 		$message = str_replace( ']]>', ']]&gt;', $message );
140 140
 		$message = glsr( Template::class )->build( 'partials/email/index', [
141 141
 			'context' => ['message' => $message],
142
-		]);
142
+		] );
143 143
 		return apply_filters( 'site-reviews/email/message', stripslashes( $message ), 'html', $this );
144 144
 	}
145 145
 
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
 	protected function normalize( array $email = [] )
150 150
 	{
151 151
 		$email = shortcode_atts( glsr( EmailDefaults::class )->defaults(), $email );
152
-		if( empty( $email['reply-to'] )) {
152
+		if( empty($email['reply-to']) ) {
153 153
 			$email['reply-to'] = $email['from'];
154 154
 		}
155 155
 		$this->email = apply_filters( 'site-reviews/email/compose', $email, $this );
Please login to merge, or discard this patch.
plugin/Modules/Html/Partials/SiteReviewsForm.php 1 patch
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 				'submit_button' => $this->buildSubmitButton().$this->buildRecaptcha(),
58 58
 			],
59 59
 			'fields' => $this->getFields(),
60
-		]);
60
+		] );
61 61
 	}
62 62
 
63 63
 	/**
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 	{
68 68
 		$integration = glsr( OptionManager::class )->get( 'settings.submissions.recaptcha.integration' );
69 69
 		$recaptchaMethod = glsr( Helper::class )->buildMethodName( $integration, 'getRecaptcha' );
70
-		if( method_exists( $this, $recaptchaMethod )) {
70
+		if( method_exists( $this, $recaptchaMethod ) ) {
71 71
 			return $this->$recaptchaMethod();
72 72
 		}
73 73
 	}
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
 		return glsr( Partial::class )->build( 'form-results', [
81 81
 			'errors' => $this->errors,
82 82
 			'message' => $this->message,
83
-		]);
83
+		] );
84 84
 	}
85 85
 
86 86
 	/**
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
 	{
91 91
 		return glsr( Builder::class )->button( '<span></span>'.__( 'Submit your review', 'site-reviews' ), [
92 92
 			'type' => 'submit',
93
-		]);
93
+		] );
94 94
 	}
95 95
 
96 96
 	/**
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 		$fields = array_merge(
111 111
 			$this->getHiddenFields(),
112 112
 			[$this->getHoneypotField()],
113
-			$this->normalizeFields( glsr( Form::class )->getFields( 'submission-form' ))
113
+			$this->normalizeFields( glsr( Form::class )->getFields( 'submission-form' ) )
114 114
 		);
115 115
 		return $fields;
116 116
 	}
@@ -123,27 +123,27 @@  discard block
 block discarded – undo
123 123
 		$fields = [[
124 124
 			'name' => 'action',
125 125
 			'value' => 'submit-review',
126
-		],[
126
+		], [
127 127
 			'name' => 'assign_to',
128 128
 			'value' => $this->args['assign_to'],
129
-		],[
129
+		], [
130 130
 			'name' => 'category',
131 131
 			'value' => $this->args['category'],
132
-		],[
132
+		], [
133 133
 			'name' => 'excluded',
134 134
 			'value' => $this->args['excluded'], // @todo should default to "[]"
135
-		],[
135
+		], [
136 136
 			'name' => 'form_id',
137 137
 			'value' => $this->args['id'],
138
-		],[
138
+		], [
139 139
 			'name' => 'nonce',
140 140
 			'value' => wp_create_nonce( 'submit-review' ),
141
-		],[
141
+		], [
142 142
 			'name' => 'referer',
143
-			'value' => wp_unslash( filter_input( INPUT_SERVER, 'REQUEST_URI' )),
143
+			'value' => wp_unslash( filter_input( INPUT_SERVER, 'REQUEST_URI' ) ),
144 144
 		]];
145 145
 		return array_map( function( $field ) {
146
-			return new Field( wp_parse_args( $field, ['type' => 'hidden'] ));
146
+			return new Field( wp_parse_args( $field, ['type' => 'hidden'] ) );
147 147
 		}, $fields );
148 148
 	}
149 149
 
@@ -152,10 +152,10 @@  discard block
 block discarded – undo
152 152
 	 */
153 153
 	protected function getHoneypotField()
154 154
 	{
155
-		return new Field([
155
+		return new Field( [
156 156
 			'name' => 'gotcha',
157 157
 			'type' => 'honeypot',
158
-		]);
158
+		] );
159 159
 	}
160 160
 
161 161
 	/**
@@ -163,12 +163,12 @@  discard block
 block discarded – undo
163 163
 	 */
164 164
 	protected function getRecaptchaCustom()
165 165
 	{
166
-		return glsr( Builder::class )->div([
166
+		return glsr( Builder::class )->div( [
167 167
 			'class' => 'glsr-recaptcha-holder',
168
-			'data-badge' => sanitize_text_field( glsr( OptionManager::class )->get( 'settings.submissions.recaptcha.position' )),
169
-			'data-sitekey' => sanitize_text_field( glsr( OptionManager::class )->get( 'settings.submissions.recaptcha.key' )),
168
+			'data-badge' => sanitize_text_field( glsr( OptionManager::class )->get( 'settings.submissions.recaptcha.position' ) ),
169
+			'data-sitekey' => sanitize_text_field( glsr( OptionManager::class )->get( 'settings.submissions.recaptcha.key' ) ),
170 170
 			'data-size' => 'invisible',
171
-		]);
171
+		] );
172 172
 	}
173 173
 
174 174
 	/**
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
 		$html = ob_get_clean();
182 182
 		return glsr( Builder::class )->div( $html, [
183 183
 			'class' => 'glsr-recaptcha-holder',
184
-		]);
184
+		] );
185 185
 	}
186 186
 
187 187
 	/**
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
 	 */
190 190
 	protected function normalizeFieldErrors( Field &$field )
191 191
 	{
192
-		if( !array_key_exists( $field->field['path'], $this->errors ))return;
192
+		if( !array_key_exists( $field->field['path'], $this->errors ) )return;
193 193
 		$field->field['errors'] = $this->errors[$field->field['path']];
194 194
 	}
195 195
 
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
 	 */
199 199
 	protected function normalizeFieldRequired( Field &$field )
200 200
 	{
201
-		if( !in_array( $field->field['path'], $this->required ))return;
201
+		if( !in_array( $field->field['path'], $this->required ) )return;
202 202
 		$field->field['required'] = true;
203 203
 	}
204 204
 
@@ -220,8 +220,8 @@  discard block
 block discarded – undo
220 220
 	 */
221 221
 	protected function normalizeFieldValue( Field &$field )
222 222
 	{
223
-		if( !array_key_exists( $field->field['path'], $this->values ))return;
224
-		if( in_array( $field->field['type'], ['radio', 'checkbox'] )) {
223
+		if( !array_key_exists( $field->field['path'], $this->values ) )return;
224
+		if( in_array( $field->field['type'], ['radio', 'checkbox'] ) ) {
225 225
 			$field->field['checked'] = $field->field['value'] == $this->values[$field->field['path']];
226 226
 		}
227 227
 		else {
Please login to merge, or discard this patch.