Passed
Push — master ( 6f98fc...d232f0 )
by Nirjhar
09:26
created
wp-plugin-framework.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -11,27 +11,27 @@
 block discarded – undo
11 11
  License: GPLv2
12 12
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
13 13
  */
14
-if ( !defined( 'ABSPATH' ) ) exit;
14
+if ( ! defined('ABSPATH')) exit;
15 15
 
16 16
 
17 17
 //Define basic names
18 18
 //Edit the "_PLUGIN" in following namespaces for compatibility with your desired name.
19
-defined( 'PLUGIN_DEBUG' ) or define( 'PLUGIN_DEBUG', false );
19
+defined('PLUGIN_DEBUG') or define('PLUGIN_DEBUG', false);
20 20
 
21
-defined( 'PLUGIN_PATH' ) or define( 'PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
22
-defined( 'PLUGIN_FILE' ) or define( 'PLUGIN_FILE', plugin_basename( __FILE__ ) );
21
+defined('PLUGIN_PATH') or define('PLUGIN_PATH', plugin_dir_path(__FILE__));
22
+defined('PLUGIN_FILE') or define('PLUGIN_FILE', plugin_basename(__FILE__));
23 23
 
24
-defined( 'PLUGIN_TRANSLATE' ) or define( 'PLUGIN_TRANSLATE', plugin_basename( plugin_dir_path( __FILE__ ) . 'asset/ln/' ) );
24
+defined('PLUGIN_TRANSLATE') or define('PLUGIN_TRANSLATE', plugin_basename(plugin_dir_path(__FILE__) . 'asset/ln/'));
25 25
 
26
-defined( 'PLUGIN_JS' ) or define( 'PLUGIN_JS', plugins_url( '/asset/js/', __FILE__  ) );
27
-defined( 'PLUGIN_CSS' ) or define( 'PLUGIN_CSS', plugins_url( '/asset/css/', __FILE__ ) );
28
-defined( 'PLUGIN_IMAGE' ) or define( 'PLUGIN_IMAGE', plugins_url( '/asset/img/', __FILE__ ) );
26
+defined('PLUGIN_JS') or define('PLUGIN_JS', plugins_url('/asset/js/', __FILE__));
27
+defined('PLUGIN_CSS') or define('PLUGIN_CSS', plugins_url('/asset/css/', __FILE__));
28
+defined('PLUGIN_IMAGE') or define('PLUGIN_IMAGE', plugins_url('/asset/img/', __FILE__));
29 29
 
30 30
 
31 31
 //The Plugin
32
-require_once( 'vendor/autoload.php' );
32
+require_once('vendor/autoload.php');
33 33
 function plugin() {
34
-	if ( class_exists( 'NirjharLo\\WP_Plugin_Framework\\PluginLoader' ) ) {
34
+	if (class_exists('NirjharLo\\WP_Plugin_Framework\\PluginLoader')) {
35 35
 		return NirjharLo\WP_Plugin_Framework\PluginLoader::instance();
36 36
 	}
37 37
 }
Please login to merge, or discard this patch.
vendor/composer/autoload_static.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,21 +6,21 @@  discard block
 block discarded – undo
6 6
 
7 7
 class ComposerStaticInit3743e829f921e1c1302d19c10846ac46
8 8
 {
9
-    public static $prefixLengthsPsr4 = array (
9
+    public static $prefixLengthsPsr4 = array(
10 10
         'N' => 
11
-        array (
11
+        array(
12 12
             'NirjharLo\\WP_Plugin_Framework\\' => 30,
13 13
         ),
14 14
     );
15 15
 
16
-    public static $prefixDirsPsr4 = array (
16
+    public static $prefixDirsPsr4 = array(
17 17
         'NirjharLo\\WP_Plugin_Framework\\' => 
18
-        array (
18
+        array(
19 19
             0 => __DIR__ . '/../..' . '/plugin',
20 20
         ),
21 21
     );
22 22
 
23
-    public static $classMap = array (
23
+    public static $classMap = array(
24 24
         'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
25 25
         'NirjharLo\\WP_Plugin_Framework\\Lib\\Ajax' => __DIR__ . '/../..' . '/plugin/Lib/Ajax.php',
26 26
         'NirjharLo\\WP_Plugin_Framework\\Lib\\Api' => __DIR__ . '/../..' . '/plugin/Lib/Api.php',
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
     public static function getInitializer(ClassLoader $loader)
44 44
     {
45
-        return \Closure::bind(function () use ($loader) {
45
+        return \Closure::bind(function() use ($loader) {
46 46
             $loader->prefixLengthsPsr4 = ComposerStaticInit3743e829f921e1c1302d19c10846ac46::$prefixLengthsPsr4;
47 47
             $loader->prefixDirsPsr4 = ComposerStaticInit3743e829f921e1c1302d19c10846ac46::$prefixDirsPsr4;
48 48
             $loader->classMap = ComposerStaticInit3743e829f921e1c1302d19c10846ac46::$classMap;
Please login to merge, or discard this patch.
vendor/composer/autoload_real.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
         self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
29 29
         spl_autoload_unregister(array('ComposerAutoloaderInit3743e829f921e1c1302d19c10846ac46', 'loadClassLoader'));
30 30
 
31
-        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
31
+        $useStaticLoader = PHP_VERSION_ID >= 50600 && ! defined('HHVM_VERSION') && ( ! function_exists('zend_loader_file_encoded') || ! zend_loader_file_encoded());
32 32
         if ($useStaticLoader) {
33 33
             require __DIR__ . '/autoload_static.php';
34 34
 
Please login to merge, or discard this patch.
vendor/composer/ClassLoader.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 
69 69
     public function getPrefixes()
70 70
     {
71
-        if (!empty($this->prefixesPsr0)) {
71
+        if ( ! empty($this->prefixesPsr0)) {
72 72
             return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
73 73
         }
74 74
 
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      */
118 118
     public function add($prefix, $paths, $prepend = false)
119 119
     {
120
-        if (!$prefix) {
120
+        if ( ! $prefix) {
121 121
             if ($prepend) {
122 122
                 $this->fallbackDirsPsr0 = array_merge(
123 123
                     (array) $paths,
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
         }
135 135
 
136 136
         $first = $prefix[0];
137
-        if (!isset($this->prefixesPsr0[$first][$prefix])) {
137
+        if ( ! isset($this->prefixesPsr0[$first][$prefix])) {
138 138
             $this->prefixesPsr0[$first][$prefix] = (array) $paths;
139 139
 
140 140
             return;
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
      */
165 165
     public function addPsr4($prefix, $paths, $prepend = false)
166 166
     {
167
-        if (!$prefix) {
167
+        if ( ! $prefix) {
168 168
             // Register directories for the root namespace.
169 169
             if ($prepend) {
170 170
                 $this->fallbackDirsPsr4 = array_merge(
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
                     (array) $paths
178 178
                 );
179 179
             }
180
-        } elseif (!isset($this->prefixDirsPsr4[$prefix])) {
180
+        } elseif ( ! isset($this->prefixDirsPsr4[$prefix])) {
181 181
             // Register directories for a new namespace.
182 182
             $length = strlen($prefix);
183 183
             if ('\\' !== $prefix[$length - 1]) {
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
      */
210 210
     public function set($prefix, $paths)
211 211
     {
212
-        if (!$prefix) {
212
+        if ( ! $prefix) {
213 213
             $this->fallbackDirsPsr0 = (array) $paths;
214 214
         } else {
215 215
             $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
      */
228 228
     public function setPsr4($prefix, $paths)
229 229
     {
230
-        if (!$prefix) {
230
+        if ( ! $prefix) {
231 231
             $this->fallbackDirsPsr4 = (array) $paths;
232 232
         } else {
233 233
             $length = strlen($prefix);
@@ -364,7 +364,7 @@  discard block
 block discarded – undo
364 364
             return false;
365 365
         }
366 366
         if (null !== $this->apcuPrefix) {
367
-            $file = apcu_fetch($this->apcuPrefix.$class, $hit);
367
+            $file = apcu_fetch($this->apcuPrefix . $class, $hit);
368 368
             if ($hit) {
369 369
                 return $file;
370 370
             }
@@ -378,7 +378,7 @@  discard block
 block discarded – undo
378 378
         }
379 379
 
380 380
         if (null !== $this->apcuPrefix) {
381
-            apcu_add($this->apcuPrefix.$class, $file);
381
+            apcu_add($this->apcuPrefix . $class, $file);
382 382
         }
383 383
 
384 384
         if (false === $file) {
Please login to merge, or discard this patch.
vendor/composer/platform_check.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -4,19 +4,19 @@
 block discarded – undo
4 4
 
5 5
 $issues = array();
6 6
 
7
-if (!(PHP_VERSION_ID >= 50300)) {
7
+if ( ! (PHP_VERSION_ID >= 50300)) {
8 8
     $issues[] = 'Your Composer dependencies require a PHP version ">= 5.3.0". You are running ' . PHP_VERSION . '.';
9 9
 }
10 10
 
11 11
 if ($issues) {
12
-    if (!headers_sent()) {
12
+    if ( ! headers_sent()) {
13 13
         header('HTTP/1.1 500 Internal Server Error');
14 14
     }
15
-    if (!ini_get('display_errors')) {
15
+    if ( ! ini_get('display_errors')) {
16 16
         if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
17
-            fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL);
18
-        } elseif (!headers_sent()) {
19
-            echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL;
17
+            fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL . PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL . PHP_EOL);
18
+        } elseif ( ! headers_sent()) {
19
+            echo 'Composer detected issues in your platform:' . PHP_EOL . PHP_EOL . str_replace('You are running ' . PHP_VERSION . '.', '', implode(PHP_EOL, $issues)) . PHP_EOL . PHP_EOL;
20 20
         }
21 21
     }
22 22
     trigger_error(
Please login to merge, or discard this patch.
plugin/Lib/Upload.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 namespace NirjharLo\WP_Plugin_Framework\Lib;
3 3
 
4
-if ( ! defined( 'ABSPATH' ) ) exit;
4
+if ( ! defined('ABSPATH')) exit;
5 5
 
6 6
 /**
7 7
  * Plugin upload for WordPress front end or backend
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * @author     Nirjhar Lo
10 10
  * @package    wp-plugin-framework
11 11
  */
12
-if ( ! class_exists( 'Upload' ) ) {
12
+if ( ! class_exists('Upload')) {
13 13
 
14 14
 	final class Upload {
15 15
 
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 		 */
22 22
 		public function __construct() {
23 23
 
24
-			if ( isset($_POST['UploadSubmit']) ) {
24
+			if (isset($_POST['UploadSubmit'])) {
25 25
 				$this->upload_controller();
26 26
 			}
27 27
 
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 
39 39
 			<form method="POST" action="" enctype="multipart/form-data">
40 40
 				<input name="UploadFile" type="file" multiple="false"/>
41
-				<?php submit_button( __( 'Upload', 'stv' ), 'secondary', 'UploadSubmit' ); ?>
41
+				<?php submit_button(__('Upload', 'stv'), 'secondary', 'UploadSubmit'); ?>
42 42
 			</form>
43 43
 			<?php
44 44
 		}
@@ -55,28 +55,28 @@  discard block
 block discarded – undo
55 55
 			$type = $file['type'];
56 56
 
57 57
 			// Check in your file type
58
-			if( $type != 'application/_TYPE_' ) {
59
-				add_action( 'admin_notices', array( $this, 'file_type_error_admin_notice' ) );
58
+			if ($type != 'application/_TYPE_') {
59
+				add_action('admin_notices', array($this, 'file_type_error_admin_notice'));
60 60
 			} else {
61 61
 
62
-				if (!function_exists('wp_handle_upload')){
62
+				if ( ! function_exists('wp_handle_upload')) {
63 63
 					require_once(ABSPATH . 'wp-admin/includes/image.php');
64 64
 					require_once(ABSPATH . 'wp-admin/includes/file.php');
65 65
 					require_once(ABSPATH . 'wp-admin/includes/media.php');
66 66
 				}
67 67
 
68
-				$overrides = array( 'test_form' => false);
68
+				$overrides = array('test_form' => false);
69 69
 				$attachment = wp_handle_upload($file, $overrides);
70 70
 
71
-				if( is_array( $attachment_id ) && array_key_exists( 'path', $attachment ) ) {
71
+				if (is_array($attachment_id) && array_key_exists('path', $attachment)) {
72 72
 					$upload_path = $attachment['path'];
73 73
 
74
-					add_action( 'admin_notices', array( $this, 'success_notice' ) );
74
+					add_action('admin_notices', array($this, 'success_notice'));
75 75
 
76 76
 					// Use $upload_path for any purpose. For example storing temporarily
77 77
 					// update_option( 'some_token', $upload_path );
78 78
 				} else {
79
-					add_action( 'admin_notices', array( $this, 'file_error_admin_notice' ) );
79
+					add_action('admin_notices', array($this, 'file_error_admin_notice'));
80 80
 					$upload_path = false;
81 81
 				}
82 82
 			}
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
 		public function file_type_error_admin_notice() { ?>
92 92
 
93 93
 			<div class="notice notice-error is-dismissible">
94
-				<p><?php _e( 'Please Upload correct type of file only.', 'textdomain' ); ?></p>
94
+				<p><?php _e('Please Upload correct type of file only.', 'textdomain'); ?></p>
95 95
  			</div>
96 96
 		<?php
97 97
 		}
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
 		public function file_error_admin_notice() { ?>
106 106
 
107 107
 			<div class="notice notice-error is-dismissible">
108
-				<p><?php _e( 'File Upload failed.', 'textdomain' ); ?></p>
108
+				<p><?php _e('File Upload failed.', 'textdomain'); ?></p>
109 109
  			</div>
110 110
 		<?php
111 111
 		}
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
 		public function success_notice() { ?>
120 120
 
121 121
 			<div class="notice notice-success is-dismissible">
122
-				<p><?php _e( 'Successfully saved file details.', 'textdomain' ); ?></p>
122
+				<p><?php _e('Successfully saved file details.', 'textdomain'); ?></p>
123 123
  			</div>
124 124
 		<?php
125 125
 		}
Please login to merge, or discard this patch.
plugin/Lib/Api.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
  * @author     Nirjhar Lo
18 18
  * @package    wp-plugin-framework
19 19
  */
20
-if ( ! class_exists( 'Api' ) ) {
20
+if ( ! class_exists('Api')) {
21 21
 
22 22
 	class Api {
23 23
 
@@ -91,14 +91,14 @@  discard block
 block discarded – undo
91 91
 
92 92
 			$curl = curl_init();
93 93
 
94
-			curl_setopt_array( $curl, $this->build() );
94
+			curl_setopt_array($curl, $this->build());
95 95
 
96
-			$result = curl_exec( $curl );
97
-			$err = curl_error( $curl );
96
+			$result = curl_exec($curl);
97
+			$err = curl_error($curl);
98 98
 
99
-			curl_close( $curl );
99
+			curl_close($curl);
100 100
 
101
-			if ( $err ) {
101
+			if ($err) {
102 102
 				$result = "cURL Error #:" . $err;
103 103
 			}
104 104
 
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
 		 */
114 114
 		public function parse($data) {
115 115
 
116
-			call_user_func( array( $this, $this->data_type ), $data );
116
+			call_user_func(array($this, $this->data_type), $data);
117 117
 		}
118 118
 
119 119
 
@@ -122,12 +122,12 @@  discard block
 block discarded – undo
122 122
 		 *
123 123
 		 * @return Array
124 124
 		 */
125
-		public function xml( $data ) {
125
+		public function xml($data) {
126 126
 
127
-			libxml_use_internal_errors( true );
128
-			$parsed = ( ! $data || $data == '' ? false : simplexml_load_string( $data ) );
127
+			libxml_use_internal_errors(true);
128
+			$parsed = ( ! $data || $data == '' ? false : simplexml_load_string($data));
129 129
 
130
-			if ( ! $parsed ) {
130
+			if ( ! $parsed) {
131 131
 				return false;
132 132
 				libxml_clear_errors();
133 133
 			} else {
@@ -141,9 +141,9 @@  discard block
 block discarded – undo
141 141
 		 *
142 142
 		 * @return Array
143 143
 		 */
144
-		public function json( $data ) {
144
+		public function json($data) {
145 145
 
146
-			$parsed = ( ! $data || $data == '' ? false : json_decode( $data, 1 ) );
146
+			$parsed = ( ! $data || $data == '' ? false : json_decode($data, 1));
147 147
 			return $parsed;
148 148
 		}
149 149
 	}
Please login to merge, or discard this patch.
plugin/Lib/Script.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -7,9 +7,9 @@  discard block
 block discarded – undo
7 7
  * @author     Nirjhar Lo
8 8
  * @package    wp-plugin-framework
9 9
  */
10
-if ( ! defined( 'ABSPATH' ) ) exit;
10
+if ( ! defined('ABSPATH')) exit;
11 11
 
12
-if ( ! class_exists( 'Script' ) ) {
12
+if ( ! class_exists('Script')) {
13 13
 
14 14
 	final class Script {
15 15
 
@@ -21,9 +21,9 @@  discard block
 block discarded – undo
21 21
 		 */
22 22
 		public function __construct() {
23 23
 
24
-			add_action( 'admin_head', array( $this, 'data_table_css' ) );
25
-			add_action( 'admin_enqueue_scripts', array( $this, 'backend_scripts' ) );
26
-			add_action( 'wp_enqueue_scripts', array( $this, 'frontend_scripts' ) );
24
+			add_action('admin_head', array($this, 'data_table_css'));
25
+			add_action('admin_enqueue_scripts', array($this, 'backend_scripts'));
26
+			add_action('wp_enqueue_scripts', array($this, 'frontend_scripts'));
27 27
 		}
28 28
 
29 29
 
@@ -55,10 +55,10 @@  discard block
 block discarded – undo
55 55
 			// Set condition to add script
56 56
 			// if ( ! isset( $_GET['page'] ) || $_GET['page'] != 'pageName' ) return;
57 57
 
58
-			wp_enqueue_script( 'jsName', PLUGIN_JS . 'ui.js', array() );
59
-			wp_localize_script( 'jsName', 'ajax', array( 'ajax_url' => admin_url('admin-ajax.php') ) );
58
+			wp_enqueue_script('jsName', PLUGIN_JS . 'ui.js', array());
59
+			wp_localize_script('jsName', 'ajax', array('ajax_url' => admin_url('admin-ajax.php')));
60 60
 
61
-			wp_enqueue_style( 'cssName', PLUGIN_CSS . 'css.css' );
61
+			wp_enqueue_style('cssName', PLUGIN_CSS . 'css.css');
62 62
 		}
63 63
 
64 64
 
@@ -69,10 +69,10 @@  discard block
 block discarded – undo
69 69
 		 */
70 70
 		public function frontend_scripts() {
71 71
 
72
-			wp_enqueue_script( 'jsName', PLUGIN_JS . 'ui.js', array() );
73
-			wp_localize_script( 'jsName', 'ajax', array( 'ajax_url' => admin_url('admin-ajax.php') ) );
72
+			wp_enqueue_script('jsName', PLUGIN_JS . 'ui.js', array());
73
+			wp_localize_script('jsName', 'ajax', array('ajax_url' => admin_url('admin-ajax.php')));
74 74
 
75
-			wp_enqueue_style( 'cssName', PLUGIN_CSS . 'css.css' );
75
+			wp_enqueue_style('cssName', PLUGIN_CSS . 'css.css');
76 76
 		}
77 77
 	}
78 78
 } ?>
Please login to merge, or discard this patch.
plugin/Lib/Cron.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 namespace NirjharLo\WP_Plugin_Framework\Lib;
3 3
 
4
-if ( ! defined( 'ABSPATH' ) ) exit;
4
+if ( ! defined('ABSPATH')) exit;
5 5
 
6 6
 /**
7 7
  * Add Cron schedules and cron task callback
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * @author     Nirjhar Lo
10 10
  * @package    wp-plugin-framework
11 11
  */
12
-if ( ! class_exists( 'Cron' ) ) {
12
+if ( ! class_exists('Cron')) {
13 13
 
14 14
 	final class Cron {
15 15
 
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
 		public function __construct() {
23 23
 
24 24
 			//Add cron schedules
25
-			add_filter('cron_schedules', array( $this, 'cron_schedules' ) );
25
+			add_filter('cron_schedules', array($this, 'cron_schedules'));
26 26
 		}
27 27
 
28 28
 
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 		 *
32 32
 		 * @return Void
33 33
 		 */
34
-		public function cron_schedules( $schedules ) {
34
+		public function cron_schedules($schedules) {
35 35
 
36 36
 			$prefix = 'prefix_'; // Avoid conflict with other crons. Example Reference: cron_30_mins
37 37
 
@@ -52,13 +52,13 @@  discard block
 block discarded – undo
52 52
 						);
53 53
 
54 54
 			/* Add each custom schedule into the cron job system. */
55
-			foreach($schedule_options as $schedule_key => $schedule){
55
+			foreach ($schedule_options as $schedule_key => $schedule) {
56 56
 
57
-				if(!isset($schedules[$prefix.$schedule_key])) {
57
+				if ( ! isset($schedules[$prefix . $schedule_key])) {
58 58
 
59
-					$schedules[$prefix.$schedule_key] = array(
59
+					$schedules[$prefix . $schedule_key] = array(
60 60
 									'interval' => $schedule['interval'],
61
-									'display' => __( 'Every '.$schedule['display'] )
61
+									'display' => __('Every ' . $schedule['display'])
62 62
 									);
63 63
 				}
64 64
 			}
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 		 */
75 75
 		public function schedule_task($task) {
76 76
 
77
-			if( ! $task ) {
77
+			if ( ! $task) {
78 78
 				return false;
79 79
 			}
80 80
 
@@ -84,17 +84,17 @@  discard block
 block discarded – undo
84 84
 						'hook'
85 85
 					);
86 86
 			$missing_keys = array();
87
-			foreach( $required_keys as $key ){
88
-				if( ! array_key_exists( $key, $task ) ) {
87
+			foreach ($required_keys as $key) {
88
+				if ( ! array_key_exists($key, $task)) {
89 89
 					$missing_keys[] = $key;
90 90
 				}
91 91
 			}
92 92
 
93
-			if( ! empty( $missing_keys ) ){
93
+			if ( ! empty($missing_keys)) {
94 94
 				return false;
95 95
 			}
96 96
 
97
-			if( wp_next_scheduled( $task['hook'] ) ){
97
+			if (wp_next_scheduled($task['hook'])) {
98 98
 				wp_clear_scheduled_hook($task['hook']);
99 99
 			}
100 100
 
Please login to merge, or discard this patch.