Completed
Push — master ( dab168...b532f3 )
by James
09:11
created
src/Assets/Register.php 2 patches
Indentation   +198 added lines, -198 removed lines patch added patch discarded remove patch
@@ -12,202 +12,202 @@
 block discarded – undo
12 12
  * @subpackage Register
13 13
  */
14 14
 class Register implements RegisterContract {
15
-	/**
16
-	 * Minification string for enqueued assets.
17
-	 *
18
-	 * @var string
19
-	 */
20
-	private $min = '';
21
-
22
-	/**
23
-	 * Url to the plugin directory.
24
-	 *
25
-	 * @var string
26
-	 */
27
-	protected $url;
28
-
29
-	/**
30
-	 * Script/plugin version.
31
-	 *
32
-	 * @var string
33
-	 */
34
-	protected $version;
35
-
36
-	/**
37
-	 * Array of script definition arrays.
38
-	 *
39
-	 * @var array
40
-	 */
41
-	private $scripts = array();
42
-
43
-	/**
44
-	 * Array of style definition arrays.
45
-	 *
46
-	 * @var array
47
-	 */
48
-	private $styles = array();
49
-
50
-	/**
51
-	 * Instantiates a new instance of the Register class.
52
-	 *
53
-	 * The URL param should be relative to the plugin directory. The URL
54
-	 * form should always end with a '/'. All asset location definitions
55
-	 * should not begin with a slash and should be relative to the plugin's
56
-	 * root directory. The URL provided by default from the Application
57
-	 * class is compatible.
58
-	 *
59
-	 * @param string $url
60
-	 * @param string $version
61
-	 */
62
-	public function __construct( $url, $version = null ) {
63
-		$this->url = $url;
64
-		$this->version = $version ? : null; // Empty string should remain null.
65
-	}
66
-
67
-	/**
68
-	 * {@inheritdoc}
69
-	 *
70
-	 * @param bool $debug
71
-	 */
72
-	public function set_debug( $debug ) {
73
-		if ( $debug ) {
74
-			$this->min = '.min';
75
-		} else {
76
-			$this->min = '';
77
-		}
78
-	}
79
-
80
-	/**
81
-	 * {@inheritdoc}
82
-	 *
83
-	 * @param array $script
84
-	 */
85
-	public function register_script( $script ) {
86
-		$this->scripts[] = $script;
87
-	}
88
-
89
-	/**
90
-	 * {@inheritdoc}
91
-	 *
92
-	 * @param array $style
93
-	 */
94
-	public function register_style( $style ) {
95
-		$this->styles[] = $style;
96
-	}
97
-
98
-	/**
99
-	 * {@inheritDoc}
100
-	 */
101
-	public function enqueue_web_scripts() {
102
-		foreach ( $this->scripts as $script ) {
103
-			if ( in_array( $script['type'], array( 'web', 'shared' ) ) ) {
104
-				$this->enqueue_script( $script );
105
-			}
106
-		}
107
-	}
108
-
109
-	/**
110
-	 * {@inheritDoc}
111
-	 */
112
-	public function enqueue_web_styles() {
113
-		foreach ( $this->styles as $style ) {
114
-			if ( in_array( $style['type'], array( 'web', 'shared' ) ) ) {
115
-				$this->enqueue_style( $style );
116
-			}
117
-		}
118
-	}
119
-
120
-	/**
121
-	 * {@inheritDoc}
122
-	 */
123
-	public function enqueue_admin_scripts() {
124
-		foreach ( $this->scripts as $script ) {
125
-			if ( in_array( $script['type'], array( 'admin', 'shared' ) ) ) {
126
-				$this->enqueue_script( $script );
127
-			}
128
-		}
129
-	}
130
-
131
-	/**
132
-	 * {@inheritDoc}
133
-	 */
134
-	public function enqueue_admin_styles() {
135
-		foreach ( $this->styles as $style ) {
136
-			if ( in_array( $style['type'], array( 'admin', 'shared' ) ) ) {
137
-				$this->enqueue_style( $style );
138
-			}
139
-		}
140
-	}
141
-
142
-	/**
143
-	 * {@inheritDoc}
144
-	 *
145
-	 * @return array[]
146
-	 */
147
-	public function action_hooks() {
148
-		return array(
149
-			array(
150
-				'hook'   => 'wp_enqueue_scripts',
151
-				'method' => 'enqueue_web_scripts',
152
-			),
153
-			array(
154
-				'hook'   => 'wp_enqueue_scripts',
155
-				'method' => 'enqueue_web_styles',
156
-			),
157
-			array(
158
-				'hook'   => 'admin_enqueue_scripts',
159
-				'method' => 'enqueue_admin_scripts',
160
-			),
161
-			array(
162
-				'hook'   => 'admin_enqueue_scripts',
163
-				'method' => 'enqueue_admin_styles',
164
-			),
165
-		);
166
-	}
167
-
168
-	/**
169
-	 * Enqueues an individual script if the style's condition is met.
170
-	 *
171
-	 * @param array $script
172
-	 */
173
-	protected function enqueue_script( $script ) {
174
-		if ( $script['condition']() ) {
175
-			wp_enqueue_script(
176
-				$script['handle'],
177
-				$this->url . $script['src'] . '.js',
178
-				isset( $script['deps'] ) ? $script['deps'] : array(),
179
-				$this->version,
180
-				isset( $script['footer'] ) ? $script['footer'] : false
181
-			);
182
-
183
-			if ( isset( $script['localize'] ) ) {
184
-				if ( is_callable( $script['localize'] ) ) { // @todo make all properties callables
185
-					$script['localize'] = call_user_func( $script['localize'] );
186
-				}
187
-
188
-				wp_localize_script(
189
-					$script['handle'],
190
-					$script['localize']['name'],
191
-					$script['localize']['data']
192
-				);
193
-			}
194
-		}
195
-	}
196
-
197
-	/**
198
-	 * Enqueues an individual stylesheet if the style's condition is met.
199
-	 *
200
-	 * @param array $style
201
-	 */
202
-	protected function enqueue_style( $style ) {
203
-		if ( $style['condition']() ) {
204
-			wp_enqueue_style(
205
-				$style['handle'],
206
-				$this->url . $style['src'] . '.css',
207
-				isset( $style['deps'] ) ? $style['deps'] : array(),
208
-				$this->version,
209
-				isset( $style['media'] ) ? $style['media'] : 'all'
210
-			);
211
-		}
212
-	}
15
+    /**
16
+     * Minification string for enqueued assets.
17
+     *
18
+     * @var string
19
+     */
20
+    private $min = '';
21
+
22
+    /**
23
+     * Url to the plugin directory.
24
+     *
25
+     * @var string
26
+     */
27
+    protected $url;
28
+
29
+    /**
30
+     * Script/plugin version.
31
+     *
32
+     * @var string
33
+     */
34
+    protected $version;
35
+
36
+    /**
37
+     * Array of script definition arrays.
38
+     *
39
+     * @var array
40
+     */
41
+    private $scripts = array();
42
+
43
+    /**
44
+     * Array of style definition arrays.
45
+     *
46
+     * @var array
47
+     */
48
+    private $styles = array();
49
+
50
+    /**
51
+     * Instantiates a new instance of the Register class.
52
+     *
53
+     * The URL param should be relative to the plugin directory. The URL
54
+     * form should always end with a '/'. All asset location definitions
55
+     * should not begin with a slash and should be relative to the plugin's
56
+     * root directory. The URL provided by default from the Application
57
+     * class is compatible.
58
+     *
59
+     * @param string $url
60
+     * @param string $version
61
+     */
62
+    public function __construct( $url, $version = null ) {
63
+        $this->url = $url;
64
+        $this->version = $version ? : null; // Empty string should remain null.
65
+    }
66
+
67
+    /**
68
+     * {@inheritdoc}
69
+     *
70
+     * @param bool $debug
71
+     */
72
+    public function set_debug( $debug ) {
73
+        if ( $debug ) {
74
+            $this->min = '.min';
75
+        } else {
76
+            $this->min = '';
77
+        }
78
+    }
79
+
80
+    /**
81
+     * {@inheritdoc}
82
+     *
83
+     * @param array $script
84
+     */
85
+    public function register_script( $script ) {
86
+        $this->scripts[] = $script;
87
+    }
88
+
89
+    /**
90
+     * {@inheritdoc}
91
+     *
92
+     * @param array $style
93
+     */
94
+    public function register_style( $style ) {
95
+        $this->styles[] = $style;
96
+    }
97
+
98
+    /**
99
+     * {@inheritDoc}
100
+     */
101
+    public function enqueue_web_scripts() {
102
+        foreach ( $this->scripts as $script ) {
103
+            if ( in_array( $script['type'], array( 'web', 'shared' ) ) ) {
104
+                $this->enqueue_script( $script );
105
+            }
106
+        }
107
+    }
108
+
109
+    /**
110
+     * {@inheritDoc}
111
+     */
112
+    public function enqueue_web_styles() {
113
+        foreach ( $this->styles as $style ) {
114
+            if ( in_array( $style['type'], array( 'web', 'shared' ) ) ) {
115
+                $this->enqueue_style( $style );
116
+            }
117
+        }
118
+    }
119
+
120
+    /**
121
+     * {@inheritDoc}
122
+     */
123
+    public function enqueue_admin_scripts() {
124
+        foreach ( $this->scripts as $script ) {
125
+            if ( in_array( $script['type'], array( 'admin', 'shared' ) ) ) {
126
+                $this->enqueue_script( $script );
127
+            }
128
+        }
129
+    }
130
+
131
+    /**
132
+     * {@inheritDoc}
133
+     */
134
+    public function enqueue_admin_styles() {
135
+        foreach ( $this->styles as $style ) {
136
+            if ( in_array( $style['type'], array( 'admin', 'shared' ) ) ) {
137
+                $this->enqueue_style( $style );
138
+            }
139
+        }
140
+    }
141
+
142
+    /**
143
+     * {@inheritDoc}
144
+     *
145
+     * @return array[]
146
+     */
147
+    public function action_hooks() {
148
+        return array(
149
+            array(
150
+                'hook'   => 'wp_enqueue_scripts',
151
+                'method' => 'enqueue_web_scripts',
152
+            ),
153
+            array(
154
+                'hook'   => 'wp_enqueue_scripts',
155
+                'method' => 'enqueue_web_styles',
156
+            ),
157
+            array(
158
+                'hook'   => 'admin_enqueue_scripts',
159
+                'method' => 'enqueue_admin_scripts',
160
+            ),
161
+            array(
162
+                'hook'   => 'admin_enqueue_scripts',
163
+                'method' => 'enqueue_admin_styles',
164
+            ),
165
+        );
166
+    }
167
+
168
+    /**
169
+     * Enqueues an individual script if the style's condition is met.
170
+     *
171
+     * @param array $script
172
+     */
173
+    protected function enqueue_script( $script ) {
174
+        if ( $script['condition']() ) {
175
+            wp_enqueue_script(
176
+                $script['handle'],
177
+                $this->url . $script['src'] . '.js',
178
+                isset( $script['deps'] ) ? $script['deps'] : array(),
179
+                $this->version,
180
+                isset( $script['footer'] ) ? $script['footer'] : false
181
+            );
182
+
183
+            if ( isset( $script['localize'] ) ) {
184
+                if ( is_callable( $script['localize'] ) ) { // @todo make all properties callables
185
+                    $script['localize'] = call_user_func( $script['localize'] );
186
+                }
187
+
188
+                wp_localize_script(
189
+                    $script['handle'],
190
+                    $script['localize']['name'],
191
+                    $script['localize']['data']
192
+                );
193
+            }
194
+        }
195
+    }
196
+
197
+    /**
198
+     * Enqueues an individual stylesheet if the style's condition is met.
199
+     *
200
+     * @param array $style
201
+     */
202
+    protected function enqueue_style( $style ) {
203
+        if ( $style['condition']() ) {
204
+            wp_enqueue_style(
205
+                $style['handle'],
206
+                $this->url . $style['src'] . '.css',
207
+                isset( $style['deps'] ) ? $style['deps'] : array(),
208
+                $this->version,
209
+                isset( $style['media'] ) ? $style['media'] : 'all'
210
+            );
211
+        }
212
+    }
213 213
 }
Please login to merge, or discard this patch.
Spacing   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -59,9 +59,9 @@  discard block
 block discarded – undo
59 59
 	 * @param string $url
60 60
 	 * @param string $version
61 61
 	 */
62
-	public function __construct( $url, $version = null ) {
62
+	public function __construct($url, $version = null) {
63 63
 		$this->url = $url;
64
-		$this->version = $version ? : null; // Empty string should remain null.
64
+		$this->version = $version ?: null; // Empty string should remain null.
65 65
 	}
66 66
 
67 67
 	/**
@@ -69,8 +69,8 @@  discard block
 block discarded – undo
69 69
 	 *
70 70
 	 * @param bool $debug
71 71
 	 */
72
-	public function set_debug( $debug ) {
73
-		if ( $debug ) {
72
+	public function set_debug($debug) {
73
+		if ($debug) {
74 74
 			$this->min = '.min';
75 75
 		} else {
76 76
 			$this->min = '';
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
 	 *
83 83
 	 * @param array $script
84 84
 	 */
85
-	public function register_script( $script ) {
85
+	public function register_script($script) {
86 86
 		$this->scripts[] = $script;
87 87
 	}
88 88
 
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
 	 *
92 92
 	 * @param array $style
93 93
 	 */
94
-	public function register_style( $style ) {
94
+	public function register_style($style) {
95 95
 		$this->styles[] = $style;
96 96
 	}
97 97
 
@@ -99,9 +99,9 @@  discard block
 block discarded – undo
99 99
 	 * {@inheritDoc}
100 100
 	 */
101 101
 	public function enqueue_web_scripts() {
102
-		foreach ( $this->scripts as $script ) {
103
-			if ( in_array( $script['type'], array( 'web', 'shared' ) ) ) {
104
-				$this->enqueue_script( $script );
102
+		foreach ($this->scripts as $script) {
103
+			if (in_array($script['type'], array('web', 'shared'))) {
104
+				$this->enqueue_script($script);
105 105
 			}
106 106
 		}
107 107
 	}
@@ -110,9 +110,9 @@  discard block
 block discarded – undo
110 110
 	 * {@inheritDoc}
111 111
 	 */
112 112
 	public function enqueue_web_styles() {
113
-		foreach ( $this->styles as $style ) {
114
-			if ( in_array( $style['type'], array( 'web', 'shared' ) ) ) {
115
-				$this->enqueue_style( $style );
113
+		foreach ($this->styles as $style) {
114
+			if (in_array($style['type'], array('web', 'shared'))) {
115
+				$this->enqueue_style($style);
116 116
 			}
117 117
 		}
118 118
 	}
@@ -121,9 +121,9 @@  discard block
 block discarded – undo
121 121
 	 * {@inheritDoc}
122 122
 	 */
123 123
 	public function enqueue_admin_scripts() {
124
-		foreach ( $this->scripts as $script ) {
125
-			if ( in_array( $script['type'], array( 'admin', 'shared' ) ) ) {
126
-				$this->enqueue_script( $script );
124
+		foreach ($this->scripts as $script) {
125
+			if (in_array($script['type'], array('admin', 'shared'))) {
126
+				$this->enqueue_script($script);
127 127
 			}
128 128
 		}
129 129
 	}
@@ -132,9 +132,9 @@  discard block
 block discarded – undo
132 132
 	 * {@inheritDoc}
133 133
 	 */
134 134
 	public function enqueue_admin_styles() {
135
-		foreach ( $this->styles as $style ) {
136
-			if ( in_array( $style['type'], array( 'admin', 'shared' ) ) ) {
137
-				$this->enqueue_style( $style );
135
+		foreach ($this->styles as $style) {
136
+			if (in_array($style['type'], array('admin', 'shared'))) {
137
+				$this->enqueue_style($style);
138 138
 			}
139 139
 		}
140 140
 	}
@@ -170,19 +170,19 @@  discard block
 block discarded – undo
170 170
 	 *
171 171
 	 * @param array $script
172 172
 	 */
173
-	protected function enqueue_script( $script ) {
174
-		if ( $script['condition']() ) {
173
+	protected function enqueue_script($script) {
174
+		if ($script['condition']()) {
175 175
 			wp_enqueue_script(
176 176
 				$script['handle'],
177
-				$this->url . $script['src'] . '.js',
178
-				isset( $script['deps'] ) ? $script['deps'] : array(),
177
+				$this->url.$script['src'].'.js',
178
+				isset($script['deps']) ? $script['deps'] : array(),
179 179
 				$this->version,
180
-				isset( $script['footer'] ) ? $script['footer'] : false
180
+				isset($script['footer']) ? $script['footer'] : false
181 181
 			);
182 182
 
183
-			if ( isset( $script['localize'] ) ) {
184
-				if ( is_callable( $script['localize'] ) ) { // @todo make all properties callables
185
-					$script['localize'] = call_user_func( $script['localize'] );
183
+			if (isset($script['localize'])) {
184
+				if (is_callable($script['localize'])) { // @todo make all properties callables
185
+					$script['localize'] = call_user_func($script['localize']);
186 186
 				}
187 187
 
188 188
 				wp_localize_script(
@@ -199,14 +199,14 @@  discard block
 block discarded – undo
199 199
 	 *
200 200
 	 * @param array $style
201 201
 	 */
202
-	protected function enqueue_style( $style ) {
203
-		if ( $style['condition']() ) {
202
+	protected function enqueue_style($style) {
203
+		if ($style['condition']()) {
204 204
 			wp_enqueue_style(
205 205
 				$style['handle'],
206
-				$this->url . $style['src'] . '.css',
207
-				isset( $style['deps'] ) ? $style['deps'] : array(),
206
+				$this->url.$style['src'].'.css',
207
+				isset($style['deps']) ? $style['deps'] : array(),
208 208
 				$this->version,
209
-				isset( $style['media'] ) ? $style['media'] : 'all'
209
+				isset($style['media']) ? $style['media'] : 'all'
210 210
 			);
211 211
 		}
212 212
 	}
Please login to merge, or discard this patch.
src/Assets/ServiceProvider.php 2 patches
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -11,40 +11,40 @@
 block discarded – undo
11 11
  * @subpackage Assets
12 12
  */
13 13
 class ServiceProvider implements ServiceProviderContract {
14
-	/**
15
-	 * Container to register with.
16
-	 *
17
-	 * @var Container
18
-	 */
19
-	protected $container;
14
+    /**
15
+     * Container to register with.
16
+     *
17
+     * @var Container
18
+     */
19
+    protected $container;
20 20
 
21
-	/**
22
-	 * {@inheritDoc}
23
-	 *
24
-	 * @param Container $container
25
-	 */
26
-	public function register( Container $container ) {
27
-		$this->container = $container;
21
+    /**
22
+     * {@inheritDoc}
23
+     *
24
+     * @param Container $container
25
+     */
26
+    public function register( Container $container ) {
27
+        $this->container = $container;
28 28
 
29
-		$container->define(
30
-			array( 'assets' => 'Intraxia\Jaxion\Contract\Assets\Register' ),
31
-			$register = new Register( $container->fetch( 'url' ), $container->fetch( 'version' ) )
32
-		);
29
+        $container->define(
30
+            array( 'assets' => 'Intraxia\Jaxion\Contract\Assets\Register' ),
31
+            $register = new Register( $container->fetch( 'url' ), $container->fetch( 'version' ) )
32
+        );
33 33
 
34
-		$this->add_assets( $register );
35
-	}
34
+        $this->add_assets( $register );
35
+    }
36 36
 
37
-	/**
38
-	 * Registers the assets on the generated Register.
39
-	 *
40
-	 * This is a no-op by default by can be overwritten by the implementing developer
41
-	 * to provide a single, clean location to register their assets.
42
-	 *
43
-	 * @param Register $register
44
-	 *
45
-	 * @codeCoverageIgnore
46
-	 */
47
-	protected function add_assets( Register $register ) {
48
-		// no-op
49
-	}
37
+    /**
38
+     * Registers the assets on the generated Register.
39
+     *
40
+     * This is a no-op by default by can be overwritten by the implementing developer
41
+     * to provide a single, clean location to register their assets.
42
+     *
43
+     * @param Register $register
44
+     *
45
+     * @codeCoverageIgnore
46
+     */
47
+    protected function add_assets( Register $register ) {
48
+        // no-op
49
+    }
50 50
 }
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -23,15 +23,15 @@  discard block
 block discarded – undo
23 23
 	 *
24 24
 	 * @param Container $container
25 25
 	 */
26
-	public function register( Container $container ) {
26
+	public function register(Container $container) {
27 27
 		$this->container = $container;
28 28
 
29 29
 		$container->define(
30
-			array( 'assets' => 'Intraxia\Jaxion\Contract\Assets\Register' ),
31
-			$register = new Register( $container->fetch( 'url' ), $container->fetch( 'version' ) )
30
+			array('assets' => 'Intraxia\Jaxion\Contract\Assets\Register'),
31
+			$register = new Register($container->fetch('url'), $container->fetch('version'))
32 32
 		);
33 33
 
34
-		$this->add_assets( $register );
34
+		$this->add_assets($register);
35 35
 	}
36 36
 
37 37
 	/**
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 	 *
45 45
 	 * @codeCoverageIgnore
46 46
 	 */
47
-	protected function add_assets( Register $register ) {
47
+	protected function add_assets(Register $register) {
48 48
 		// no-op
49 49
 	}
50 50
 }
Please login to merge, or discard this patch.
src/Core/Loader.php 2 patches
Indentation   +97 added lines, -97 removed lines patch added patch discarded remove patch
@@ -15,109 +15,109 @@
 block discarded – undo
15 15
  * @subpackage Core
16 16
  */
17 17
 class Loader implements LoaderContract {
18
-	/**
19
-	 * Array of action hooks to attach.
20
-	 *
21
-	 * @var array[]
22
-	 */
23
-	protected $actions = array();
18
+    /**
19
+     * Array of action hooks to attach.
20
+     *
21
+     * @var array[]
22
+     */
23
+    protected $actions = array();
24 24
 
25
-	/**
26
-	 * Array of filter hooks to attach.
27
-	 *
28
-	 * @var array[]
29
-	 */
30
-	protected $filters = array();
25
+    /**
26
+     * Array of filter hooks to attach.
27
+     *
28
+     * @var array[]
29
+     */
30
+    protected $filters = array();
31 31
 
32
-	/**
33
-	 * {@inheritDoc}
34
-	 */
35
-	public function run() {
36
-		foreach ( $this->actions as $action ) {
37
-			add_action(
38
-				$action['hook'],
39
-				array( $action['service'], $action['method'] ),
40
-				$action['priority'],
41
-				$action['args']
42
-			);
43
-		}
32
+    /**
33
+     * {@inheritDoc}
34
+     */
35
+    public function run() {
36
+        foreach ( $this->actions as $action ) {
37
+            add_action(
38
+                $action['hook'],
39
+                array( $action['service'], $action['method'] ),
40
+                $action['priority'],
41
+                $action['args']
42
+            );
43
+        }
44 44
 
45
-		foreach ( $this->filters as $filter ) {
46
-			add_filter(
47
-				$filter['hook'],
48
-				array( $filter['service'], $filter['method'] ),
49
-				$filter['priority'],
50
-				$filter['args']
51
-			);
52
-		}
53
-	}
45
+        foreach ( $this->filters as $filter ) {
46
+            add_filter(
47
+                $filter['hook'],
48
+                array( $filter['service'], $filter['method'] ),
49
+                $filter['priority'],
50
+                $filter['args']
51
+            );
52
+        }
53
+    }
54 54
 
55
-	/**
56
-	 * {@inheritDoc}
57
-	 *
58
-	 * @param HasActions $service
59
-	 */
60
-	public function register_actions( HasActions $service ) {
61
-		foreach ( $service->action_hooks() as $action ) {
62
-			$this->actions = $this->add(
63
-				$this->actions,
64
-				$action['hook'],
65
-				$service,
66
-				$action['method'],
67
-				isset( $action['priority'] ) ? $action['priority'] : 10,
68
-				isset( $action['args'] ) ? $action['args'] : 1
69
-			);
70
-		}
71
-	}
55
+    /**
56
+     * {@inheritDoc}
57
+     *
58
+     * @param HasActions $service
59
+     */
60
+    public function register_actions( HasActions $service ) {
61
+        foreach ( $service->action_hooks() as $action ) {
62
+            $this->actions = $this->add(
63
+                $this->actions,
64
+                $action['hook'],
65
+                $service,
66
+                $action['method'],
67
+                isset( $action['priority'] ) ? $action['priority'] : 10,
68
+                isset( $action['args'] ) ? $action['args'] : 1
69
+            );
70
+        }
71
+    }
72 72
 
73
-	/**
74
-	 * {@inheritDoc}
75
-	 *
76
-	 * @param HasFilters $service
77
-	 */
78
-	public function register_filters( HasFilters $service ) {
79
-		foreach ( $service->filter_hooks() as $filter ) {
80
-			$this->filters = $this->add(
81
-				$this->filters,
82
-				$filter['hook'],
83
-				$service,
84
-				$filter['method'],
85
-				isset( $filter['priority'] ) ? $filter['priority'] : 10,
86
-				isset( $filter['args'] ) ? $filter['args'] : 1
87
-			);
88
-		}
89
-	}
73
+    /**
74
+     * {@inheritDoc}
75
+     *
76
+     * @param HasFilters $service
77
+     */
78
+    public function register_filters( HasFilters $service ) {
79
+        foreach ( $service->filter_hooks() as $filter ) {
80
+            $this->filters = $this->add(
81
+                $this->filters,
82
+                $filter['hook'],
83
+                $service,
84
+                $filter['method'],
85
+                isset( $filter['priority'] ) ? $filter['priority'] : 10,
86
+                isset( $filter['args'] ) ? $filter['args'] : 1
87
+            );
88
+        }
89
+    }
90 90
 
91
-	/**
92
-	 * {@inheritDoc}
93
-	 *
94
-	 * @param HasShortcode $service
95
-	 */
96
-	public function register_shortcode( HasShortcode $service ) {
97
-		add_shortcode( $service->shortcode_name(), array( $service, 'do_shortcode' ) );
98
-	}
91
+    /**
92
+     * {@inheritDoc}
93
+     *
94
+     * @param HasShortcode $service
95
+     */
96
+    public function register_shortcode( HasShortcode $service ) {
97
+        add_shortcode( $service->shortcode_name(), array( $service, 'do_shortcode' ) );
98
+    }
99 99
 
100
-	/**
101
-	 * Utility to register the actions and hooks into a single collection.
102
-	 *
103
-	 * @param array  $hooks
104
-	 * @param string $hook
105
-	 * @param object $service
106
-	 * @param string $method
107
-	 * @param int    $priority
108
-	 * @param int    $accepted_args
109
-	 *
110
-	 * @return array
111
-	 */
112
-	protected function add( $hooks, $hook, $service, $method, $priority, $accepted_args ) {
113
-		$hooks[] = array(
114
-			'hook'     => $hook,
115
-			'service'  => $service,
116
-			'method'   => $method,
117
-			'priority' => $priority,
118
-			'args'     => $accepted_args,
119
-		);
100
+    /**
101
+     * Utility to register the actions and hooks into a single collection.
102
+     *
103
+     * @param array  $hooks
104
+     * @param string $hook
105
+     * @param object $service
106
+     * @param string $method
107
+     * @param int    $priority
108
+     * @param int    $accepted_args
109
+     *
110
+     * @return array
111
+     */
112
+    protected function add( $hooks, $hook, $service, $method, $priority, $accepted_args ) {
113
+        $hooks[] = array(
114
+            'hook'     => $hook,
115
+            'service'  => $service,
116
+            'method'   => $method,
117
+            'priority' => $priority,
118
+            'args'     => $accepted_args,
119
+        );
120 120
 
121
-		return $hooks;
122
-	}
121
+        return $hooks;
122
+    }
123 123
 }
Please login to merge, or discard this patch.
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -33,19 +33,19 @@  discard block
 block discarded – undo
33 33
 	 * {@inheritDoc}
34 34
 	 */
35 35
 	public function run() {
36
-		foreach ( $this->actions as $action ) {
36
+		foreach ($this->actions as $action) {
37 37
 			add_action(
38 38
 				$action['hook'],
39
-				array( $action['service'], $action['method'] ),
39
+				array($action['service'], $action['method']),
40 40
 				$action['priority'],
41 41
 				$action['args']
42 42
 			);
43 43
 		}
44 44
 
45
-		foreach ( $this->filters as $filter ) {
45
+		foreach ($this->filters as $filter) {
46 46
 			add_filter(
47 47
 				$filter['hook'],
48
-				array( $filter['service'], $filter['method'] ),
48
+				array($filter['service'], $filter['method']),
49 49
 				$filter['priority'],
50 50
 				$filter['args']
51 51
 			);
@@ -57,15 +57,15 @@  discard block
 block discarded – undo
57 57
 	 *
58 58
 	 * @param HasActions $service
59 59
 	 */
60
-	public function register_actions( HasActions $service ) {
61
-		foreach ( $service->action_hooks() as $action ) {
60
+	public function register_actions(HasActions $service) {
61
+		foreach ($service->action_hooks() as $action) {
62 62
 			$this->actions = $this->add(
63 63
 				$this->actions,
64 64
 				$action['hook'],
65 65
 				$service,
66 66
 				$action['method'],
67
-				isset( $action['priority'] ) ? $action['priority'] : 10,
68
-				isset( $action['args'] ) ? $action['args'] : 1
67
+				isset($action['priority']) ? $action['priority'] : 10,
68
+				isset($action['args']) ? $action['args'] : 1
69 69
 			);
70 70
 		}
71 71
 	}
@@ -75,15 +75,15 @@  discard block
 block discarded – undo
75 75
 	 *
76 76
 	 * @param HasFilters $service
77 77
 	 */
78
-	public function register_filters( HasFilters $service ) {
79
-		foreach ( $service->filter_hooks() as $filter ) {
78
+	public function register_filters(HasFilters $service) {
79
+		foreach ($service->filter_hooks() as $filter) {
80 80
 			$this->filters = $this->add(
81 81
 				$this->filters,
82 82
 				$filter['hook'],
83 83
 				$service,
84 84
 				$filter['method'],
85
-				isset( $filter['priority'] ) ? $filter['priority'] : 10,
86
-				isset( $filter['args'] ) ? $filter['args'] : 1
85
+				isset($filter['priority']) ? $filter['priority'] : 10,
86
+				isset($filter['args']) ? $filter['args'] : 1
87 87
 			);
88 88
 		}
89 89
 	}
@@ -93,8 +93,8 @@  discard block
 block discarded – undo
93 93
 	 *
94 94
 	 * @param HasShortcode $service
95 95
 	 */
96
-	public function register_shortcode( HasShortcode $service ) {
97
-		add_shortcode( $service->shortcode_name(), array( $service, 'do_shortcode' ) );
96
+	public function register_shortcode(HasShortcode $service) {
97
+		add_shortcode($service->shortcode_name(), array($service, 'do_shortcode'));
98 98
 	}
99 99
 
100 100
 	/**
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
 	 *
110 110
 	 * @return array
111 111
 	 */
112
-	protected function add( $hooks, $hook, $service, $method, $priority, $accepted_args ) {
112
+	protected function add($hooks, $hook, $service, $method, $priority, $accepted_args) {
113 113
 		$hooks[] = array(
114 114
 			'hook'     => $hook,
115 115
 			'service'  => $service,
Please login to merge, or discard this patch.
src/Core/Container.php 2 patches
Indentation   +318 added lines, -318 removed lines patch added patch discarded remove patch
@@ -13,322 +13,322 @@
 block discarded – undo
13 13
  * @subpackage Core
14 14
  */
15 15
 class Container implements ContainerContract {
16
-	/**
17
-	 * ServiceProvider names to register with the container.
18
-	 *
19
-	 * Can be overwritten to include predefined providers.
20
-	 *
21
-	 * @var string[]
22
-	 */
23
-	protected $providers = array();
24
-
25
-	/**
26
-	 * Registered definitions.
27
-	 *
28
-	 * @var mixed[]
29
-	 */
30
-	private $definitions = array();
31
-
32
-	/**
33
-	 * Aliases to share between fetches.
34
-	 *
35
-	 * @var <string, true>[]
36
-	 */
37
-	private $shared = array();
38
-
39
-	/**
40
-	 * Aliases of all the registered services.
41
-	 *
42
-	 * @var <string, true>[]
43
-	 */
44
-	private $aliases = array();
45
-
46
-	/**
47
-	 * Array of classes registered on the container.
48
-	 *
49
-	 * @var <string, true>[]
50
-	 */
51
-	private $classes = array();
52
-
53
-	/**
54
-	 * Current position in the loop.
55
-	 *
56
-	 * @var int
57
-	 */
58
-	private $position;
59
-
60
-	/**
61
-	 * 0-indexed array of aliases for looping.
62
-	 *
63
-	 * @var string[]
64
-	 */
65
-	private $keys = array();
66
-
67
-	/**
68
-	 * Create a new container with the given providers.
69
-	 *
70
-	 * Providers can be instances or the class of the provider as a string.
71
-	 *
72
-	 * @param ServiceProvider[]|string[] $providers
73
-	 */
74
-	public function __construct( array $providers = array() ) {
75
-		// array_unique ensures we only register each provider once.
76
-		$providers = array_unique( array_merge( $this->providers, $providers ) );
77
-
78
-		foreach ( $providers as $provider ) {
79
-			if ( is_string( $provider ) && class_exists( $provider ) ) {
80
-				$provider = new $provider;
81
-			}
82
-
83
-			if ( $provider instanceof ServiceProvider ) {
84
-				$this->register( $provider );
85
-			}
86
-		}
87
-	}
88
-
89
-
90
-	/**
91
-	 * {@inheritdoc}
92
-	 *
93
-	 * @param string|array $alias
94
-	 * @param mixed        $definition
95
-	 *
96
-	 * @throws DefinedAliasException
97
-	 *
98
-	 * @return $this
99
-	 */
100
-	public function define( $alias, $definition ) {
101
-		if ( is_array( $alias ) ) {
102
-			$class = current( $alias );
103
-			$alias = key( $alias );
104
-		}
105
-
106
-		if ( isset( $this->aliases[ $alias ] ) ) {
107
-			throw new DefinedAliasException( $alias );
108
-		}
109
-
110
-		$this->aliases[ $alias ]     = true;
111
-		$this->definitions[ $alias ] = $definition;
112
-
113
-		// Closures are treated as factories unless
114
-		// defined via Container::share.
115
-		if ( ! $definition instanceof \Closure ) {
116
-			$this->shared[ $alias ] = true;
117
-		}
118
-
119
-		if ( isset( $class ) ) {
120
-			$this->classes[ $class ] = $alias;
121
-		}
122
-
123
-		return $this;
124
-	}
125
-
126
-	/**
127
-	 * {@inheritdoc}
128
-	 *
129
-	 * @param string|array $alias
130
-	 * @param mixed        $definition
131
-	 *
132
-	 * @throws DefinedAliasException
133
-	 *
134
-	 * @return $this
135
-	 */
136
-	public function share( $alias, $definition ) {
137
-		$this->define( $alias, $definition );
138
-
139
-		if ( is_array( $alias ) ) {
140
-			$alias = key( $alias );
141
-		}
142
-
143
-		$this->shared[ $alias ] = true;
144
-
145
-		return $this;
146
-	}
147
-
148
-	/**
149
-	 * {@inheritdoc}
150
-	 *
151
-	 * @param string $alias
152
-	 *
153
-	 * @throws UndefinedAliasException
154
-	 *
155
-	 * @return mixed
156
-	 */
157
-	public function fetch( $alias ) {
158
-		if ( isset( $this->classes[ $alias ] ) ) {
159
-			// If the alias is a class name,
160
-			// then retrieve its linked alias.
161
-			// This is only registered when
162
-			// registering using an array.
163
-			$alias = $this->classes[ $alias ];
164
-		}
165
-
166
-		if ( ! isset( $this->aliases[ $alias ] ) ) {
167
-			throw new UndefinedAliasException( $alias );
168
-		}
169
-
170
-		$value = $this->definitions[ $alias ];
171
-
172
-		// If the shared value is a closure,
173
-		// execute it and assign the result
174
-		// in place of the closure.
175
-		if ( $value instanceof \Closure ) {
176
-			$factory = $value;
177
-			$value   = $factory( $this );
178
-		}
179
-
180
-		// If the value is shared, save the shared value.
181
-		if ( isset( $this->shared[ $alias ] ) ) {
182
-			$this->definitions[ $alias ] = $value;
183
-		}
184
-
185
-		// Return the fetched value.
186
-		return $value;
187
-	}
188
-
189
-	/**
190
-	 * {@inheritdoc}
191
-	 *
192
-	 * @param  string $alias
193
-	 *
194
-	 * @return bool
195
-	 */
196
-	public function has( $alias ) {
197
-		return isset( $this->aliases[ $alias ] );
198
-	}
199
-
200
-	/**
201
-	 * {@inheritDoc}
202
-	 *
203
-	 * @param string $alias
204
-	 *
205
-	 * @return $this
206
-	 */
207
-	public function remove( $alias ) {
208
-		if ( isset( $this->aliases[ $alias ] ) ) {
209
-			/**
210
-			 * If there's no reference in the aliases array,
211
-			 * the service won't be found on fetching and
212
-			 * can be overwritten on setting.
213
-			 *
214
-			 * Pros: Quick setting/unsetting, faster
215
-			 * performance on those operations when doing
216
-			 * a lot of these.
217
-			 *
218
-			 * Cons: Objects and values set in the container
219
-			 * can't get garbage collected.
220
-			 *
221
-			 * If this is a problem, this may need to be revisited.
222
-			 */
223
-			unset( $this->aliases[ $alias ] );
224
-		}
225
-
226
-		return $this;
227
-	}
228
-
229
-	/**
230
-	 * {@inheritDoc}
231
-	 *
232
-	 * @param ServiceProvider $provider
233
-	 *
234
-	 * @return $this
235
-	 */
236
-	public function register( ServiceProvider $provider ) {
237
-		// @todo make sure provider is only registered once
238
-		$provider->register( $this );
239
-
240
-		return $this;
241
-	}
242
-
243
-	/**
244
-	 * Set a value into the container.
245
-	 *
246
-	 * @param  string $id
247
-	 * @param  mixed  $value
248
-	 *
249
-	 * @see    define
250
-	 */
251
-	public function offsetSet( $id, $value ) {
252
-		$this->define( $id, $value );
253
-	}
254
-
255
-	/**
256
-	 * Get an value from the container.
257
-	 *
258
-	 * @param  string $id
259
-	 *
260
-	 * @return object
261
-	 * @throws UndefinedAliasException
262
-	 *
263
-	 * @see    fetch
264
-	 */
265
-	public function offsetGet( $id ) {
266
-		return $this->fetch( $id );
267
-	}
268
-
269
-	/**
270
-	 * Checks if a key is set on the container.
271
-	 *
272
-	 * @param  string $id
273
-	 *
274
-	 * @return bool
275
-	 *
276
-	 * @see    has
277
-	 */
278
-	public function offsetExists( $id ) {
279
-		return $this->has( $id );
280
-	}
281
-
282
-	/**
283
-	 * Remove a key from the container.
284
-	 *
285
-	 * @param string $id
286
-	 *
287
-	 * @see   remove
288
-	 */
289
-	public function offsetUnset( $id ) {
290
-		$this->remove( $id );
291
-	}
292
-
293
-	/**
294
-	 * Sets the object properties to prepare for the loop.
295
-	 */
296
-	public function rewind() {
297
-		$this->position = 0;
298
-		$this->keys     = array_keys( $this->aliases );
299
-	}
300
-
301
-	/**
302
-	 * Retrieves the service object for the current step in the loop.
303
-	 *
304
-	 * @return object
305
-	 */
306
-	public function current() {
307
-		return $this->fetch( $this->keys[ $this->position ] );
308
-	}
309
-
310
-	/**
311
-	 * Retrieves the key for the current step in the loop.
312
-	 *
313
-	 * @return string
314
-	 */
315
-	public function key() {
316
-		return $this->keys[ $this->position ];
317
-	}
318
-
319
-	/**
320
-	 * Increments to the next step in the loop.
321
-	 */
322
-	public function next() {
323
-		$this->position ++;
324
-	}
325
-
326
-	/**
327
-	 * Checks if the next step in the loop in valid.
328
-	 *
329
-	 * @return bool
330
-	 */
331
-	public function valid() {
332
-		return isset( $this->keys[ $this->position ] );
333
-	}
16
+    /**
17
+     * ServiceProvider names to register with the container.
18
+     *
19
+     * Can be overwritten to include predefined providers.
20
+     *
21
+     * @var string[]
22
+     */
23
+    protected $providers = array();
24
+
25
+    /**
26
+     * Registered definitions.
27
+     *
28
+     * @var mixed[]
29
+     */
30
+    private $definitions = array();
31
+
32
+    /**
33
+     * Aliases to share between fetches.
34
+     *
35
+     * @var <string, true>[]
36
+     */
37
+    private $shared = array();
38
+
39
+    /**
40
+     * Aliases of all the registered services.
41
+     *
42
+     * @var <string, true>[]
43
+     */
44
+    private $aliases = array();
45
+
46
+    /**
47
+     * Array of classes registered on the container.
48
+     *
49
+     * @var <string, true>[]
50
+     */
51
+    private $classes = array();
52
+
53
+    /**
54
+     * Current position in the loop.
55
+     *
56
+     * @var int
57
+     */
58
+    private $position;
59
+
60
+    /**
61
+     * 0-indexed array of aliases for looping.
62
+     *
63
+     * @var string[]
64
+     */
65
+    private $keys = array();
66
+
67
+    /**
68
+     * Create a new container with the given providers.
69
+     *
70
+     * Providers can be instances or the class of the provider as a string.
71
+     *
72
+     * @param ServiceProvider[]|string[] $providers
73
+     */
74
+    public function __construct( array $providers = array() ) {
75
+        // array_unique ensures we only register each provider once.
76
+        $providers = array_unique( array_merge( $this->providers, $providers ) );
77
+
78
+        foreach ( $providers as $provider ) {
79
+            if ( is_string( $provider ) && class_exists( $provider ) ) {
80
+                $provider = new $provider;
81
+            }
82
+
83
+            if ( $provider instanceof ServiceProvider ) {
84
+                $this->register( $provider );
85
+            }
86
+        }
87
+    }
88
+
89
+
90
+    /**
91
+     * {@inheritdoc}
92
+     *
93
+     * @param string|array $alias
94
+     * @param mixed        $definition
95
+     *
96
+     * @throws DefinedAliasException
97
+     *
98
+     * @return $this
99
+     */
100
+    public function define( $alias, $definition ) {
101
+        if ( is_array( $alias ) ) {
102
+            $class = current( $alias );
103
+            $alias = key( $alias );
104
+        }
105
+
106
+        if ( isset( $this->aliases[ $alias ] ) ) {
107
+            throw new DefinedAliasException( $alias );
108
+        }
109
+
110
+        $this->aliases[ $alias ]     = true;
111
+        $this->definitions[ $alias ] = $definition;
112
+
113
+        // Closures are treated as factories unless
114
+        // defined via Container::share.
115
+        if ( ! $definition instanceof \Closure ) {
116
+            $this->shared[ $alias ] = true;
117
+        }
118
+
119
+        if ( isset( $class ) ) {
120
+            $this->classes[ $class ] = $alias;
121
+        }
122
+
123
+        return $this;
124
+    }
125
+
126
+    /**
127
+     * {@inheritdoc}
128
+     *
129
+     * @param string|array $alias
130
+     * @param mixed        $definition
131
+     *
132
+     * @throws DefinedAliasException
133
+     *
134
+     * @return $this
135
+     */
136
+    public function share( $alias, $definition ) {
137
+        $this->define( $alias, $definition );
138
+
139
+        if ( is_array( $alias ) ) {
140
+            $alias = key( $alias );
141
+        }
142
+
143
+        $this->shared[ $alias ] = true;
144
+
145
+        return $this;
146
+    }
147
+
148
+    /**
149
+     * {@inheritdoc}
150
+     *
151
+     * @param string $alias
152
+     *
153
+     * @throws UndefinedAliasException
154
+     *
155
+     * @return mixed
156
+     */
157
+    public function fetch( $alias ) {
158
+        if ( isset( $this->classes[ $alias ] ) ) {
159
+            // If the alias is a class name,
160
+            // then retrieve its linked alias.
161
+            // This is only registered when
162
+            // registering using an array.
163
+            $alias = $this->classes[ $alias ];
164
+        }
165
+
166
+        if ( ! isset( $this->aliases[ $alias ] ) ) {
167
+            throw new UndefinedAliasException( $alias );
168
+        }
169
+
170
+        $value = $this->definitions[ $alias ];
171
+
172
+        // If the shared value is a closure,
173
+        // execute it and assign the result
174
+        // in place of the closure.
175
+        if ( $value instanceof \Closure ) {
176
+            $factory = $value;
177
+            $value   = $factory( $this );
178
+        }
179
+
180
+        // If the value is shared, save the shared value.
181
+        if ( isset( $this->shared[ $alias ] ) ) {
182
+            $this->definitions[ $alias ] = $value;
183
+        }
184
+
185
+        // Return the fetched value.
186
+        return $value;
187
+    }
188
+
189
+    /**
190
+     * {@inheritdoc}
191
+     *
192
+     * @param  string $alias
193
+     *
194
+     * @return bool
195
+     */
196
+    public function has( $alias ) {
197
+        return isset( $this->aliases[ $alias ] );
198
+    }
199
+
200
+    /**
201
+     * {@inheritDoc}
202
+     *
203
+     * @param string $alias
204
+     *
205
+     * @return $this
206
+     */
207
+    public function remove( $alias ) {
208
+        if ( isset( $this->aliases[ $alias ] ) ) {
209
+            /**
210
+             * If there's no reference in the aliases array,
211
+             * the service won't be found on fetching and
212
+             * can be overwritten on setting.
213
+             *
214
+             * Pros: Quick setting/unsetting, faster
215
+             * performance on those operations when doing
216
+             * a lot of these.
217
+             *
218
+             * Cons: Objects and values set in the container
219
+             * can't get garbage collected.
220
+             *
221
+             * If this is a problem, this may need to be revisited.
222
+             */
223
+            unset( $this->aliases[ $alias ] );
224
+        }
225
+
226
+        return $this;
227
+    }
228
+
229
+    /**
230
+     * {@inheritDoc}
231
+     *
232
+     * @param ServiceProvider $provider
233
+     *
234
+     * @return $this
235
+     */
236
+    public function register( ServiceProvider $provider ) {
237
+        // @todo make sure provider is only registered once
238
+        $provider->register( $this );
239
+
240
+        return $this;
241
+    }
242
+
243
+    /**
244
+     * Set a value into the container.
245
+     *
246
+     * @param  string $id
247
+     * @param  mixed  $value
248
+     *
249
+     * @see    define
250
+     */
251
+    public function offsetSet( $id, $value ) {
252
+        $this->define( $id, $value );
253
+    }
254
+
255
+    /**
256
+     * Get an value from the container.
257
+     *
258
+     * @param  string $id
259
+     *
260
+     * @return object
261
+     * @throws UndefinedAliasException
262
+     *
263
+     * @see    fetch
264
+     */
265
+    public function offsetGet( $id ) {
266
+        return $this->fetch( $id );
267
+    }
268
+
269
+    /**
270
+     * Checks if a key is set on the container.
271
+     *
272
+     * @param  string $id
273
+     *
274
+     * @return bool
275
+     *
276
+     * @see    has
277
+     */
278
+    public function offsetExists( $id ) {
279
+        return $this->has( $id );
280
+    }
281
+
282
+    /**
283
+     * Remove a key from the container.
284
+     *
285
+     * @param string $id
286
+     *
287
+     * @see   remove
288
+     */
289
+    public function offsetUnset( $id ) {
290
+        $this->remove( $id );
291
+    }
292
+
293
+    /**
294
+     * Sets the object properties to prepare for the loop.
295
+     */
296
+    public function rewind() {
297
+        $this->position = 0;
298
+        $this->keys     = array_keys( $this->aliases );
299
+    }
300
+
301
+    /**
302
+     * Retrieves the service object for the current step in the loop.
303
+     *
304
+     * @return object
305
+     */
306
+    public function current() {
307
+        return $this->fetch( $this->keys[ $this->position ] );
308
+    }
309
+
310
+    /**
311
+     * Retrieves the key for the current step in the loop.
312
+     *
313
+     * @return string
314
+     */
315
+    public function key() {
316
+        return $this->keys[ $this->position ];
317
+    }
318
+
319
+    /**
320
+     * Increments to the next step in the loop.
321
+     */
322
+    public function next() {
323
+        $this->position ++;
324
+    }
325
+
326
+    /**
327
+     * Checks if the next step in the loop in valid.
328
+     *
329
+     * @return bool
330
+     */
331
+    public function valid() {
332
+        return isset( $this->keys[ $this->position ] );
333
+    }
334 334
 }
Please login to merge, or discard this patch.
Spacing   +53 added lines, -53 removed lines patch added patch discarded remove patch
@@ -71,17 +71,17 @@  discard block
 block discarded – undo
71 71
 	 *
72 72
 	 * @param ServiceProvider[]|string[] $providers
73 73
 	 */
74
-	public function __construct( array $providers = array() ) {
74
+	public function __construct(array $providers = array()) {
75 75
 		// array_unique ensures we only register each provider once.
76
-		$providers = array_unique( array_merge( $this->providers, $providers ) );
76
+		$providers = array_unique(array_merge($this->providers, $providers));
77 77
 
78
-		foreach ( $providers as $provider ) {
79
-			if ( is_string( $provider ) && class_exists( $provider ) ) {
78
+		foreach ($providers as $provider) {
79
+			if (is_string($provider) && class_exists($provider)) {
80 80
 				$provider = new $provider;
81 81
 			}
82 82
 
83
-			if ( $provider instanceof ServiceProvider ) {
84
-				$this->register( $provider );
83
+			if ($provider instanceof ServiceProvider) {
84
+				$this->register($provider);
85 85
 			}
86 86
 		}
87 87
 	}
@@ -97,27 +97,27 @@  discard block
 block discarded – undo
97 97
 	 *
98 98
 	 * @return $this
99 99
 	 */
100
-	public function define( $alias, $definition ) {
101
-		if ( is_array( $alias ) ) {
102
-			$class = current( $alias );
103
-			$alias = key( $alias );
100
+	public function define($alias, $definition) {
101
+		if (is_array($alias)) {
102
+			$class = current($alias);
103
+			$alias = key($alias);
104 104
 		}
105 105
 
106
-		if ( isset( $this->aliases[ $alias ] ) ) {
107
-			throw new DefinedAliasException( $alias );
106
+		if (isset($this->aliases[$alias])) {
107
+			throw new DefinedAliasException($alias);
108 108
 		}
109 109
 
110
-		$this->aliases[ $alias ]     = true;
111
-		$this->definitions[ $alias ] = $definition;
110
+		$this->aliases[$alias]     = true;
111
+		$this->definitions[$alias] = $definition;
112 112
 
113 113
 		// Closures are treated as factories unless
114 114
 		// defined via Container::share.
115
-		if ( ! $definition instanceof \Closure ) {
116
-			$this->shared[ $alias ] = true;
115
+		if (!$definition instanceof \Closure) {
116
+			$this->shared[$alias] = true;
117 117
 		}
118 118
 
119
-		if ( isset( $class ) ) {
120
-			$this->classes[ $class ] = $alias;
119
+		if (isset($class)) {
120
+			$this->classes[$class] = $alias;
121 121
 		}
122 122
 
123 123
 		return $this;
@@ -133,14 +133,14 @@  discard block
 block discarded – undo
133 133
 	 *
134 134
 	 * @return $this
135 135
 	 */
136
-	public function share( $alias, $definition ) {
137
-		$this->define( $alias, $definition );
136
+	public function share($alias, $definition) {
137
+		$this->define($alias, $definition);
138 138
 
139
-		if ( is_array( $alias ) ) {
140
-			$alias = key( $alias );
139
+		if (is_array($alias)) {
140
+			$alias = key($alias);
141 141
 		}
142 142
 
143
-		$this->shared[ $alias ] = true;
143
+		$this->shared[$alias] = true;
144 144
 
145 145
 		return $this;
146 146
 	}
@@ -154,32 +154,32 @@  discard block
 block discarded – undo
154 154
 	 *
155 155
 	 * @return mixed
156 156
 	 */
157
-	public function fetch( $alias ) {
158
-		if ( isset( $this->classes[ $alias ] ) ) {
157
+	public function fetch($alias) {
158
+		if (isset($this->classes[$alias])) {
159 159
 			// If the alias is a class name,
160 160
 			// then retrieve its linked alias.
161 161
 			// This is only registered when
162 162
 			// registering using an array.
163
-			$alias = $this->classes[ $alias ];
163
+			$alias = $this->classes[$alias];
164 164
 		}
165 165
 
166
-		if ( ! isset( $this->aliases[ $alias ] ) ) {
167
-			throw new UndefinedAliasException( $alias );
166
+		if (!isset($this->aliases[$alias])) {
167
+			throw new UndefinedAliasException($alias);
168 168
 		}
169 169
 
170
-		$value = $this->definitions[ $alias ];
170
+		$value = $this->definitions[$alias];
171 171
 
172 172
 		// If the shared value is a closure,
173 173
 		// execute it and assign the result
174 174
 		// in place of the closure.
175
-		if ( $value instanceof \Closure ) {
175
+		if ($value instanceof \Closure) {
176 176
 			$factory = $value;
177
-			$value   = $factory( $this );
177
+			$value   = $factory($this);
178 178
 		}
179 179
 
180 180
 		// If the value is shared, save the shared value.
181
-		if ( isset( $this->shared[ $alias ] ) ) {
182
-			$this->definitions[ $alias ] = $value;
181
+		if (isset($this->shared[$alias])) {
182
+			$this->definitions[$alias] = $value;
183 183
 		}
184 184
 
185 185
 		// Return the fetched value.
@@ -193,8 +193,8 @@  discard block
 block discarded – undo
193 193
 	 *
194 194
 	 * @return bool
195 195
 	 */
196
-	public function has( $alias ) {
197
-		return isset( $this->aliases[ $alias ] );
196
+	public function has($alias) {
197
+		return isset($this->aliases[$alias]);
198 198
 	}
199 199
 
200 200
 	/**
@@ -204,8 +204,8 @@  discard block
 block discarded – undo
204 204
 	 *
205 205
 	 * @return $this
206 206
 	 */
207
-	public function remove( $alias ) {
208
-		if ( isset( $this->aliases[ $alias ] ) ) {
207
+	public function remove($alias) {
208
+		if (isset($this->aliases[$alias])) {
209 209
 			/**
210 210
 			 * If there's no reference in the aliases array,
211 211
 			 * the service won't be found on fetching and
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
 			 *
221 221
 			 * If this is a problem, this may need to be revisited.
222 222
 			 */
223
-			unset( $this->aliases[ $alias ] );
223
+			unset($this->aliases[$alias]);
224 224
 		}
225 225
 
226 226
 		return $this;
@@ -233,9 +233,9 @@  discard block
 block discarded – undo
233 233
 	 *
234 234
 	 * @return $this
235 235
 	 */
236
-	public function register( ServiceProvider $provider ) {
236
+	public function register(ServiceProvider $provider) {
237 237
 		// @todo make sure provider is only registered once
238
-		$provider->register( $this );
238
+		$provider->register($this);
239 239
 
240 240
 		return $this;
241 241
 	}
@@ -248,8 +248,8 @@  discard block
 block discarded – undo
248 248
 	 *
249 249
 	 * @see    define
250 250
 	 */
251
-	public function offsetSet( $id, $value ) {
252
-		$this->define( $id, $value );
251
+	public function offsetSet($id, $value) {
252
+		$this->define($id, $value);
253 253
 	}
254 254
 
255 255
 	/**
@@ -262,8 +262,8 @@  discard block
 block discarded – undo
262 262
 	 *
263 263
 	 * @see    fetch
264 264
 	 */
265
-	public function offsetGet( $id ) {
266
-		return $this->fetch( $id );
265
+	public function offsetGet($id) {
266
+		return $this->fetch($id);
267 267
 	}
268 268
 
269 269
 	/**
@@ -275,8 +275,8 @@  discard block
 block discarded – undo
275 275
 	 *
276 276
 	 * @see    has
277 277
 	 */
278
-	public function offsetExists( $id ) {
279
-		return $this->has( $id );
278
+	public function offsetExists($id) {
279
+		return $this->has($id);
280 280
 	}
281 281
 
282 282
 	/**
@@ -286,8 +286,8 @@  discard block
 block discarded – undo
286 286
 	 *
287 287
 	 * @see   remove
288 288
 	 */
289
-	public function offsetUnset( $id ) {
290
-		$this->remove( $id );
289
+	public function offsetUnset($id) {
290
+		$this->remove($id);
291 291
 	}
292 292
 
293 293
 	/**
@@ -295,7 +295,7 @@  discard block
 block discarded – undo
295 295
 	 */
296 296
 	public function rewind() {
297 297
 		$this->position = 0;
298
-		$this->keys     = array_keys( $this->aliases );
298
+		$this->keys     = array_keys($this->aliases);
299 299
 	}
300 300
 
301 301
 	/**
@@ -304,7 +304,7 @@  discard block
 block discarded – undo
304 304
 	 * @return object
305 305
 	 */
306 306
 	public function current() {
307
-		return $this->fetch( $this->keys[ $this->position ] );
307
+		return $this->fetch($this->keys[$this->position]);
308 308
 	}
309 309
 
310 310
 	/**
@@ -313,14 +313,14 @@  discard block
 block discarded – undo
313 313
 	 * @return string
314 314
 	 */
315 315
 	public function key() {
316
-		return $this->keys[ $this->position ];
316
+		return $this->keys[$this->position];
317 317
 	}
318 318
 
319 319
 	/**
320 320
 	 * Increments to the next step in the loop.
321 321
 	 */
322 322
 	public function next() {
323
-		$this->position ++;
323
+		$this->position++;
324 324
 	}
325 325
 
326 326
 	/**
@@ -329,6 +329,6 @@  discard block
 block discarded – undo
329 329
 	 * @return bool
330 330
 	 */
331 331
 	public function valid() {
332
-		return isset( $this->keys[ $this->position ] );
332
+		return isset($this->keys[$this->position]);
333 333
 	}
334 334
 }
Please login to merge, or discard this patch.
src/Utility/Str.php 2 patches
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -11,39 +11,39 @@
 block discarded – undo
11 11
  * @subpackage Utility
12 12
  */
13 13
 class Str {
14
-	/**
15
-	 * Determine if a given string starts with a given substring.
16
-	 *
17
-	 * @param  string       $haystack
18
-	 * @param  string|array $needles
19
-	 *
20
-	 * @return bool
21
-	 */
22
-	public static function starts_with( $haystack, $needles ) {
23
-		foreach ( (array) $needles as $needle ) {
24
-			if ( '' !== $needle && 0 === strpos( $haystack, $needle ) ) {
25
-				return true;
26
-			}
27
-		}
14
+    /**
15
+     * Determine if a given string starts with a given substring.
16
+     *
17
+     * @param  string       $haystack
18
+     * @param  string|array $needles
19
+     *
20
+     * @return bool
21
+     */
22
+    public static function starts_with( $haystack, $needles ) {
23
+        foreach ( (array) $needles as $needle ) {
24
+            if ( '' !== $needle && 0 === strpos( $haystack, $needle ) ) {
25
+                return true;
26
+            }
27
+        }
28 28
 
29
-		return false;
30
-	}
29
+        return false;
30
+    }
31 31
 
32
-	/**
33
-	 * Determine if a given string ends with a given substring.
34
-	 *
35
-	 * @param  string       $haystack
36
-	 * @param  string|array $needles
37
-	 *
38
-	 * @return bool
39
-	 */
40
-	public static function ends_with( $haystack, $needles ) {
41
-		foreach ( (array) $needles as $needle ) {
42
-			if ( substr( $haystack, - strlen( $needle ) ) === (string) $needle ) {
43
-				return true;
44
-			}
45
-		}
32
+    /**
33
+     * Determine if a given string ends with a given substring.
34
+     *
35
+     * @param  string       $haystack
36
+     * @param  string|array $needles
37
+     *
38
+     * @return bool
39
+     */
40
+    public static function ends_with( $haystack, $needles ) {
41
+        foreach ( (array) $needles as $needle ) {
42
+            if ( substr( $haystack, - strlen( $needle ) ) === (string) $needle ) {
43
+                return true;
44
+            }
45
+        }
46 46
 
47
-		return false;
48
-	}
47
+        return false;
48
+    }
49 49
 }
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -19,9 +19,9 @@  discard block
 block discarded – undo
19 19
 	 *
20 20
 	 * @return bool
21 21
 	 */
22
-	public static function starts_with( $haystack, $needles ) {
23
-		foreach ( (array) $needles as $needle ) {
24
-			if ( '' !== $needle && 0 === strpos( $haystack, $needle ) ) {
22
+	public static function starts_with($haystack, $needles) {
23
+		foreach ((array) $needles as $needle) {
24
+			if ('' !== $needle && 0 === strpos($haystack, $needle)) {
25 25
 				return true;
26 26
 			}
27 27
 		}
@@ -37,9 +37,9 @@  discard block
 block discarded – undo
37 37
 	 *
38 38
 	 * @return bool
39 39
 	 */
40
-	public static function ends_with( $haystack, $needles ) {
41
-		foreach ( (array) $needles as $needle ) {
42
-			if ( substr( $haystack, - strlen( $needle ) ) === (string) $needle ) {
40
+	public static function ends_with($haystack, $needles) {
41
+		foreach ((array) $needles as $needle) {
42
+			if (substr($haystack, - strlen($needle)) === (string) $needle) {
43 43
 				return true;
44 44
 			}
45 45
 		}
Please login to merge, or discard this patch.
src/Axolotl/Model.php 2 patches
Indentation   +716 added lines, -716 removed lines patch added patch discarded remove patch
@@ -21,720 +21,720 @@
 block discarded – undo
21 21
  * @since      0.1.0
22 22
  */
23 23
 abstract class Model implements Serializes {
24
-	/**
25
-	 * Table attribute key.
26
-	 */
27
-	const TABLE_KEY = '@@table';
28
-
29
-	/**
30
-	 * Object attribute key.
31
-	 */
32
-	const OBJECT_KEY = '@@object';
33
-
34
-	/**
35
-	 * Memoized values for class methods.
36
-	 *
37
-	 * @var array
38
-	 */
39
-	private static $memo = array();
40
-
41
-	/**
42
-	 * Model attributes.
43
-	 *
44
-	 * @var array
45
-	 */
46
-	private $attributes = array(
47
-		self::TABLE_KEY  => array(),
48
-		self::OBJECT_KEY => null,
49
-	);
50
-
51
-	/**
52
-	 * Model's original attributes.
53
-	 *
54
-	 * @var array
55
-	 */
56
-	private $original = array(
57
-		self::TABLE_KEY  => array(),
58
-		self::OBJECT_KEY => null,
59
-	);
60
-
61
-	/**
62
-	 * Properties which are allowed to be set on the model.
63
-	 *
64
-	 * If this array is empty, any attributes can be set on the model.
65
-	 *
66
-	 * @var string[]
67
-	 */
68
-	protected $fillable = array();
69
-
70
-	/**
71
-	 * Properties which cannot be automatically filled on the model.
72
-	 *
73
-	 * If the model is unguarded, these properties can be filled.
74
-	 *
75
-	 * @var array
76
-	 */
77
-	protected $guarded = array();
78
-
79
-	/**
80
-	 * Properties which should not be serialized.
81
-	 *
82
-	 * @var array
83
-	 */
84
-	protected $hidden = array();
85
-
86
-	/**
87
-	 * Properties which should be serialized.
88
-	 *
89
-	 * @var array
90
-	 */
91
-	protected $visible = array();
92
-
93
-	/**
94
-	 * Whether the model's properties are guarded.
95
-	 *
96
-	 * When false, allows guarded properties to be filled.
97
-	 *
98
-	 * @var bool
99
-	 */
100
-	protected $is_guarded = true;
101
-
102
-	/**
103
-	 * Constructs a new model with provided attributes.
104
-	 *
105
-	 * If self::OBJECT_KEY is passed as one of the attributes, the underlying post
106
-	 * will be overwritten.
107
-	 *
108
-	 * @param array <string, mixed> $attributes
109
-	 */
110
-	public function __construct( array $attributes = array() ) {
111
-		$this->maybe_boot();
112
-		$this->sync_original();
113
-
114
-		if ( $this->uses_wp_object() ) {
115
-			$this->create_wp_object();
116
-		}
117
-
118
-		$this->unguard();
119
-		$this->refresh( $attributes );
120
-		$this->reguard();
121
-	}
122
-
123
-	/**
124
-	 * Refreshes the model's current attributes with the provided array.
125
-	 *
126
-	 * The model's attributes will match what was provided in the array,
127
-	 * and any attributes not passed
128
-	 *
129
-	 * @param array $attributes
130
-	 *
131
-	 * @return $this
132
-	 */
133
-	public function refresh( array $attributes ) {
134
-		$this->clear();
135
-
136
-		return $this->merge( $attributes );
137
-	}
138
-
139
-	/**
140
-	 * Merges the provided attributes with the provided array.
141
-	 *
142
-	 * @param array $attributes
143
-	 *
144
-	 * @return $this
145
-	 */
146
-	public function merge( array $attributes ) {
147
-		foreach ( $attributes as $name => $value ) {
148
-			$this->set_attribute( $name, $value );
149
-		}
150
-
151
-		return $this;
152
-	}
153
-
154
-	/**
155
-	 * Get the model's table attributes.
156
-	 *
157
-	 * Returns the array of for the model that will either need to be
158
-	 * saved in postmeta or a separate table.
159
-	 *
160
-	 * @return array
161
-	 */
162
-	public function get_table_attributes() {
163
-		return $this->attributes[ self::TABLE_KEY ];
164
-	}
165
-
166
-	/**
167
-	 * Get the model's original attributes.
168
-	 *
169
-	 * @return array
170
-	 */
171
-	public function get_original_table_attributes() {
172
-		return $this->original[ self::TABLE_KEY ];
173
-	}
174
-
175
-	/**
176
-	 * Retrieve an array of the attributes on the model
177
-	 * that have changed compared to the model's
178
-	 * original data.
179
-	 *
180
-	 * @return array
181
-	 */
182
-	public function get_changed_table_attributes() {
183
-		$changed = array();
184
-
185
-		foreach ( $this->get_table_attributes() as $key => $value ) {
186
-			if ( $value !==
187
-			     $this->get_original_attribute( $key )
188
-			) {
189
-				$changed[ $key ] = $value;
190
-			}
191
-		}
192
-
193
-		return $changed;
194
-	}
195
-
196
-	/**
197
-	 * Get the model's underlying post.
198
-	 *
199
-	 * Returns the underlying WP_Post object for the model, representing
200
-	 * the data that will be save in the wp_posts table.
201
-	 *
202
-	 * @return false|WP_Post|WP_Term
203
-	 */
204
-	public function get_underlying_wp_object() {
205
-		if ( isset( $this->attributes[ self::OBJECT_KEY ] ) ) {
206
-			return $this->attributes[ self::OBJECT_KEY ];
207
-		}
208
-
209
-		return false;
210
-	}
211
-
212
-	/**
213
-	 * Get the model's original underlying post.
214
-	 *
215
-	 * @return WP_Post
216
-	 */
217
-	public function get_original_underlying_wp_object() {
218
-		return $this->original[ self::OBJECT_KEY ];
219
-	}
220
-
221
-	/**
222
-	 * Get the model attributes on the WordPress object
223
-	 * that have changed compared to the model's
224
-	 * original attributes.
225
-	 *
226
-	 * @return array
227
-	 */
228
-	public function get_changed_wp_object_attributes() {
229
-		$changed = array();
230
-
231
-		foreach ( $this->get_wp_object_keys() as $key ) {
232
-			if ( $this->get_attribute( $key ) !==
233
-			     $this->get_original_attribute( $key )
234
-			) {
235
-				$changed[ $key ] = $this->get_attribute( $key );
236
-			}
237
-		}
238
-
239
-		return $changed;
240
-	}
241
-
242
-	/**
243
-	 * Magic __set method.
244
-	 *
245
-	 * Passes the name and value to set_attribute, which is where the magic happens.
246
-	 *
247
-	 * @param string $name
248
-	 * @param mixed  $value
249
-	 */
250
-	public function __set( $name, $value ) {
251
-		$this->set_attribute( $name, $value );
252
-	}
253
-
254
-	/**
255
-	 * Sets the model attributes.
256
-	 *
257
-	 * Checks whether the model attribute can be set, check if it
258
-	 * maps to the WP_Post property, otherwise, assigns it to the
259
-	 * table attribute array.
260
-	 *
261
-	 * @param string $name
262
-	 * @param mixed  $value
263
-	 *
264
-	 * @return $this
265
-	 *
266
-	 * @throws Exception
267
-	 * @throws GuardedPropertyException
268
-	 */
269
-	public function set_attribute( $name, $value ) {
270
-		if ( self::OBJECT_KEY === $name ) {
271
-			if ( ! $value ) {
272
-				throw new Exception;
273
-			}
274
-
275
-			return $this->override_wp_object( $value );
276
-		}
277
-
278
-		if ( self::TABLE_KEY === $name ) {
279
-			return $this->override_table( $value );
280
-		}
281
-
282
-		if ( ! $this->is_fillable( $name ) ) {
283
-			throw new GuardedPropertyException;
284
-		}
285
-
286
-		if ( $method = $this->has_map_method( $name ) ) {
287
-			$this->attributes[ self::OBJECT_KEY ]->{$this->{$method}()} = $value;
288
-		} else {
289
-			$this->attributes[ self::TABLE_KEY ][ $name ] = $value;
290
-		}
291
-
292
-		return $this;
293
-	}
294
-
295
-	/**
296
-	 * Retrieves all the attribute keys for the model.
297
-	 *
298
-	 * @return array
299
-	 */
300
-	public function get_attribute_keys() {
301
-		if ( isset( self::$memo[ get_called_class() ][ __METHOD__ ] ) ) {
302
-			return self::$memo[ get_called_class() ][ __METHOD__ ];
303
-		}
304
-
305
-		return self::$memo[ get_called_class() ][ __METHOD__ ]
306
-			= array_merge(
307
-				$this->fillable,
308
-				$this->guarded,
309
-				$this->get_compute_methods()
310
-			);
311
-	}
312
-
313
-	/**
314
-	 * Retrieves the attribute keys that aren't mapped to a post.
315
-	 *
316
-	 * @return array
317
-	 */
318
-	public function get_table_keys() {
319
-		if ( isset( self::$memo[ get_called_class() ][ __METHOD__ ] ) ) {
320
-			return self::$memo[ get_called_class() ][ __METHOD__ ];
321
-		}
322
-
323
-		$keys = array();
324
-
325
-		foreach ( $this->get_attribute_keys() as $key ) {
326
-			if ( ! $this->has_map_method( $key ) &&
327
-			     ! $this->has_compute_method( $key )
328
-			) {
329
-				$keys[] = $key;
330
-			}
331
-		}
332
-
333
-		return self::$memo[ get_called_class() ][ __METHOD__ ] = $keys;
334
-	}
335
-
336
-	/**
337
-	 * Retrieves the attribute keys that are mapped to a post.
338
-	 *
339
-	 * @return array
340
-	 */
341
-	public function get_wp_object_keys() {
342
-		if ( isset( self::$memo[ get_called_class() ][ __METHOD__ ] ) ) {
343
-			return self::$memo[ get_called_class() ][ __METHOD__ ];
344
-		}
345
-
346
-		$keys = array();
347
-
348
-		foreach ( $this->get_attribute_keys() as $key ) {
349
-			if ( $this->has_map_method( $key ) ) {
350
-				$keys[] = $key;
351
-			}
352
-		}
353
-
354
-		return self::$memo[ get_called_class() ][ __METHOD__ ] = $keys;
355
-	}
356
-
357
-	/**
358
-	 * Returns the model's keys that are computed at call time.
359
-	 *
360
-	 * @return array
361
-	 */
362
-	public function get_computed_keys() {
363
-		if ( isset( self::$memo[ get_called_class() ][ __METHOD__ ] ) ) {
364
-			return self::$memo[ get_called_class() ][ __METHOD__ ];
365
-		}
366
-
367
-		$keys = array();
368
-
369
-		foreach ( $this->get_attribute_keys() as $key ) {
370
-			if ( $this->has_compute_method( $key ) ) {
371
-				$keys[] = $key;
372
-			}
373
-		}
374
-
375
-		return self::$memo[ get_called_class() ][ __METHOD__ ] = $keys;
376
-	}
377
-
378
-	/**
379
-	 * Serializes the model's public data into an array.
380
-	 *
381
-	 * @return array
382
-	 */
383
-	public function serialize() {
384
-		$attributes = array();
385
-
386
-		if ( $this->visible ) {
387
-			// If visible attributes are set, we'll only reveal those.
388
-			foreach ( $this->visible as $key ) {
389
-				$attributes[ $key ] = $this->get_attribute( $key );
390
-			}
391
-		} elseif ( $this->hidden ) {
392
-			// If hidden attributes are set, we'll grab everything and hide those.
393
-			foreach ( $this->get_attribute_keys() as $key ) {
394
-				if ( ! in_array( $key, $this->hidden ) ) {
395
-					$attributes[ $key ] = $this->get_attribute( $key );
396
-				}
397
-			}
398
-		} else {
399
-			// If nothing is hidden/visible, we'll grab and reveal everything.
400
-			foreach ( $this->get_attribute_keys() as $key ) {
401
-				$attributes[ $key ] = $this->get_attribute( $key );
402
-			}
403
-		}
404
-
405
-		return array_map( function ( $attribute ) {
406
-			if ( $attribute instanceof Serializes ) {
407
-				return $attribute->serialize();
408
-			}
409
-
410
-			return $attribute;
411
-		}, $attributes );
412
-	}
413
-
414
-	/**
415
-	 * Syncs the current attributes to the model's original.
416
-	 *
417
-	 * @return $this
418
-	 */
419
-	public function sync_original() {
420
-		$this->original = $this->attributes;
421
-
422
-		if ( $this->attributes[ self::OBJECT_KEY ] ) {
423
-			$this->original[ self::OBJECT_KEY ] = clone $this->attributes[ self::OBJECT_KEY ];
424
-		}
425
-
426
-		foreach ( $this->original[ self::TABLE_KEY ] as $key => $item ) {
427
-			if ( is_object( $item ) ) {
428
-				$this->original[ $key ] = clone $item;
429
-			}
430
-		}
431
-
432
-		return $this;
433
-	}
434
-
435
-	/**
436
-	 * Checks if a given attribute is mass-fillable.
437
-	 *
438
-	 * Returns true if the attribute can be filled, false if it can't.
439
-	 *
440
-	 * @param string $name
441
-	 *
442
-	 * @return bool
443
-	 */
444
-	private function is_fillable( $name ) {
445
-		// If this model isn't guarded, everything is fillable.
446
-		if ( ! $this->is_guarded ) {
447
-			return true;
448
-		}
449
-
450
-		// If it's in the fillable array, then it's fillable.
451
-		if ( in_array( $name, $this->fillable ) ) {
452
-			return true;
453
-		}
454
-
455
-		// If it's explicitly guarded, then it's not fillable.
456
-		if ( in_array( $name, $this->guarded ) ) {
457
-			return false;
458
-		}
459
-
460
-		// If fillable hasn't been defined, then everything else fillable.
461
-		return ! $this->fillable;
462
-	}
463
-
464
-	/**
465
-	 * Overrides the current WordPress object with a provided one.
466
-	 *
467
-	 * Resets the post's default values and stores it in the attributes.
468
-	 *
469
-	 * @param WP_Post|WP_Term $value
470
-	 *
471
-	 * @return $this
472
-	 */
473
-	private function override_wp_object( $value ) {
474
-		$this->attributes[ self::OBJECT_KEY ] = $this->set_wp_object_constants( $value );
475
-
476
-		return $this;
477
-	}
478
-
479
-	/**
480
-	 * Overrides the current table attributes array with a provided one.
481
-	 *
482
-	 * @param array $value
483
-	 *
484
-	 * @return $this
485
-	 */
486
-	private function override_table( array $value ) {
487
-		$this->attributes[ self::TABLE_KEY ] = $value;
488
-
489
-		return $this;
490
-	}
491
-
492
-	/**
493
-	 * Create and set with a new blank post.
494
-	 *
495
-	 * Creates a new WP_Post object, assigns it the default attributes,
496
-	 * and stores it in the attributes.
497
-	 *
498
-	 * @throws LogicException
499
-	 */
500
-	private function create_wp_object() {
501
-		switch ( true ) {
502
-			case $this instanceof UsesWordPressPost:
503
-				$object = new WP_Post( (object) array() );
504
-				break;
505
-			case $this instanceof UsesWordPressTerm:
506
-				$object = new WP_Term( (object) array() );
507
-				break;
508
-			default:
509
-				throw new LogicException;
510
-				break;
511
-		}
512
-
513
-		$this->attributes[ self::OBJECT_KEY ] = $this->set_wp_object_constants( $object );
514
-	}
515
-
516
-	/**
517
-	 * Enforces values on the post that can't change.
518
-	 *
519
-	 * Primarily, this is used to make sure the post_type always maps
520
-	 * to the model's "$type" property, but this can all be overridden
521
-	 * by the developer to enforce other values in the model.
522
-	 *
523
-	 * @param object $object
524
-	 *
525
-	 * @return object
526
-	 */
527
-	protected function set_wp_object_constants( $object ) {
528
-		if ( $this instanceof UsesWordPressPost ) {
529
-			$object->post_type = static::get_post_type();
530
-		}
531
-
532
-		if ( $this instanceof UsesWordPressTerm ) {
533
-			$object->taxonomy = static::get_taxonomy();
534
-		}
535
-
536
-		return $object;
537
-	}
538
-
539
-	/**
540
-	 * Magic __get method.
541
-	 *
542
-	 * Passes the name and value to get_attribute, which is where the magic happens.
543
-	 *
544
-	 * @param string $name
545
-	 *
546
-	 * @return mixed
547
-	 */
548
-	public function __get( $name ) {
549
-		return $this->get_attribute( $name );
550
-	}
551
-
552
-	/**
553
-	 * Retrieves the model attribute.
554
-	 *
555
-	 * @param string $name
556
-	 *
557
-	 * @return mixed
558
-	 *
559
-	 * @throws PropertyDoesNotExistException If property isn't found.
560
-	 */
561
-	public function get_attribute( $name ) {
562
-		if ( $method = $this->has_map_method( $name ) ) {
563
-			$value = $this->attributes[ self::OBJECT_KEY ]->{$this->{$method}()};
564
-		} elseif ( $method = $this->has_compute_method( $name ) ) {
565
-			$value = $this->{$method}();
566
-		} else {
567
-			if ( ! isset( $this->attributes[ self::TABLE_KEY ][ $name ] ) ) {
568
-				throw new PropertyDoesNotExistException( $name );
569
-			}
570
-
571
-			$value = $this->attributes[ self::TABLE_KEY ][ $name ];
572
-		}
573
-
574
-		return $value;
575
-	}
576
-
577
-	/**
578
-	 * Retrieve the model's original attribute value.
579
-	 *
580
-	 * @param string $name
581
-	 *
582
-	 * @return mixed
583
-	 *
584
-	 * @throws PropertyDoesNotExistException If property isn't found.
585
-	 */
586
-	public function get_original_attribute( $name ) {
587
-		$original_attributes = $this->original;
588
-
589
-		if ( ! is_object( $original_attributes[ static::OBJECT_KEY ] ) ) {
590
-			unset( $original_attributes[ static::OBJECT_KEY ] );
591
-		}
592
-
593
-		$original = new static( $original_attributes );
594
-
595
-		try {
596
-			return $original->get_attribute( $name );
597
-		} catch ( Exception $exception ) {
598
-			return null;
599
-		}
600
-	}
601
-
602
-	/**
603
-	 * Fetches the Model's primary ID, depending on the model
604
-	 * implementation.
605
-	 *
606
-	 * @return int
607
-	 *
608
-	 * @throws LogicException
609
-	 */
610
-	public function get_primary_id() {
611
-		if ( $this instanceof UsesWordPressPost ) {
612
-			return $this->get_underlying_wp_object()->ID;
613
-		}
614
-
615
-		if ( $this instanceof UsesWordPressTerm ) {
616
-			return $this->get_underlying_wp_object()->term_id;
617
-		}
618
-
619
-		// Model w/o wp_object not yet supported.
620
-		throw new LogicException;
621
-	}
622
-
623
-	/**
624
-	 * Checks whether the attribute has a map method.
625
-	 *
626
-	 * This is used to determine whether the attribute maps to a
627
-	 * property on the underlying WP_Post object. Returns the
628
-	 * method if one exists, returns false if it doesn't.
629
-	 *
630
-	 * @param string $name
631
-	 *
632
-	 * @return false|string
633
-	 */
634
-	protected function has_map_method( $name ) {
635
-		if ( method_exists( $this, $method = "map_{$name}" ) ) {
636
-			return $method;
637
-		}
638
-
639
-		return false;
640
-	}
641
-
642
-	/**
643
-	 * Checks whether the attribute has a compute method.
644
-	 *
645
-	 * This is used to determine if the attribute should be computed
646
-	 * from other attributes.
647
-	 *
648
-	 * @param string $name
649
-	 *
650
-	 * @return false|string
651
-	 */
652
-	protected function has_compute_method( $name ) {
653
-		if ( method_exists( $this, $method = "compute_{$name}" ) ) {
654
-			return $method;
655
-		}
656
-
657
-		return false;
658
-	}
659
-
660
-	/**
661
-	 * Clears all the current attributes from the model.
662
-	 *
663
-	 * This does not touch the model's original attributes, and will
664
-	 * only clear fillable attributes, unless the model is unguarded.
665
-	 *
666
-	 * @return $this
667
-	 */
668
-	public function clear() {
669
-		$keys = array_merge(
670
-			$this->get_table_keys(),
671
-			$this->get_wp_object_keys()
672
-		);
673
-
674
-		foreach ( $keys as $key ) {
675
-			try {
676
-				$this->set_attribute( $key, null );
677
-			} catch ( GuardedPropertyException $e ) {
678
-				// We won't clear out guarded attributes.
679
-			}
680
-		}
681
-
682
-		return $this;
683
-	}
684
-
685
-	/**
686
-	 * Unguards the model.
687
-	 *
688
-	 * Sets the model to be unguarded, allowing the filling of
689
-	 * guarded attributes.
690
-	 */
691
-	public function unguard() {
692
-		$this->is_guarded = false;
693
-	}
694
-
695
-	/**
696
-	 * Reguards the model.
697
-	 *
698
-	 * Sets the model to be guarded, preventing filling of
699
-	 * guarded attributes.
700
-	 */
701
-	public function reguard() {
702
-		$this->is_guarded = true;
703
-	}
704
-
705
-	/**
706
-	 * Retrieves all the compute methods on the model.
707
-	 *
708
-	 * @return array
709
-	 */
710
-	protected function get_compute_methods() {
711
-		$methods = get_class_methods( get_called_class() );
712
-		$methods = array_filter( $methods, function ( $method ) {
713
-			return strrpos( $method, 'compute_', - strlen( $method ) ) !== false;
714
-		} );
715
-		$methods = array_map( function ( $method ) {
716
-			return substr( $method, strlen( 'compute_' ) );
717
-		}, $methods );
718
-
719
-		return $methods;
720
-	}
721
-
722
-	/**
723
-	 * Sets up the memo array for the creating model.
724
-	 */
725
-	private function maybe_boot() {
726
-		if ( ! isset( self::$memo[ get_called_class() ] ) ) {
727
-			self::$memo[ get_called_class() ] = array();
728
-		}
729
-	}
730
-
731
-	/**
732
-	 * Whether this Model uses an underlying WordPress object.
733
-	 *
734
-	 * @return bool
735
-	 */
736
-	protected function uses_wp_object() {
737
-		return $this instanceof UsesWordPressPost ||
738
-			$this instanceof UsesWordPressTerm;
739
-	}
24
+    /**
25
+     * Table attribute key.
26
+     */
27
+    const TABLE_KEY = '@@table';
28
+
29
+    /**
30
+     * Object attribute key.
31
+     */
32
+    const OBJECT_KEY = '@@object';
33
+
34
+    /**
35
+     * Memoized values for class methods.
36
+     *
37
+     * @var array
38
+     */
39
+    private static $memo = array();
40
+
41
+    /**
42
+     * Model attributes.
43
+     *
44
+     * @var array
45
+     */
46
+    private $attributes = array(
47
+        self::TABLE_KEY  => array(),
48
+        self::OBJECT_KEY => null,
49
+    );
50
+
51
+    /**
52
+     * Model's original attributes.
53
+     *
54
+     * @var array
55
+     */
56
+    private $original = array(
57
+        self::TABLE_KEY  => array(),
58
+        self::OBJECT_KEY => null,
59
+    );
60
+
61
+    /**
62
+     * Properties which are allowed to be set on the model.
63
+     *
64
+     * If this array is empty, any attributes can be set on the model.
65
+     *
66
+     * @var string[]
67
+     */
68
+    protected $fillable = array();
69
+
70
+    /**
71
+     * Properties which cannot be automatically filled on the model.
72
+     *
73
+     * If the model is unguarded, these properties can be filled.
74
+     *
75
+     * @var array
76
+     */
77
+    protected $guarded = array();
78
+
79
+    /**
80
+     * Properties which should not be serialized.
81
+     *
82
+     * @var array
83
+     */
84
+    protected $hidden = array();
85
+
86
+    /**
87
+     * Properties which should be serialized.
88
+     *
89
+     * @var array
90
+     */
91
+    protected $visible = array();
92
+
93
+    /**
94
+     * Whether the model's properties are guarded.
95
+     *
96
+     * When false, allows guarded properties to be filled.
97
+     *
98
+     * @var bool
99
+     */
100
+    protected $is_guarded = true;
101
+
102
+    /**
103
+     * Constructs a new model with provided attributes.
104
+     *
105
+     * If self::OBJECT_KEY is passed as one of the attributes, the underlying post
106
+     * will be overwritten.
107
+     *
108
+     * @param array <string, mixed> $attributes
109
+     */
110
+    public function __construct( array $attributes = array() ) {
111
+        $this->maybe_boot();
112
+        $this->sync_original();
113
+
114
+        if ( $this->uses_wp_object() ) {
115
+            $this->create_wp_object();
116
+        }
117
+
118
+        $this->unguard();
119
+        $this->refresh( $attributes );
120
+        $this->reguard();
121
+    }
122
+
123
+    /**
124
+     * Refreshes the model's current attributes with the provided array.
125
+     *
126
+     * The model's attributes will match what was provided in the array,
127
+     * and any attributes not passed
128
+     *
129
+     * @param array $attributes
130
+     *
131
+     * @return $this
132
+     */
133
+    public function refresh( array $attributes ) {
134
+        $this->clear();
135
+
136
+        return $this->merge( $attributes );
137
+    }
138
+
139
+    /**
140
+     * Merges the provided attributes with the provided array.
141
+     *
142
+     * @param array $attributes
143
+     *
144
+     * @return $this
145
+     */
146
+    public function merge( array $attributes ) {
147
+        foreach ( $attributes as $name => $value ) {
148
+            $this->set_attribute( $name, $value );
149
+        }
150
+
151
+        return $this;
152
+    }
153
+
154
+    /**
155
+     * Get the model's table attributes.
156
+     *
157
+     * Returns the array of for the model that will either need to be
158
+     * saved in postmeta or a separate table.
159
+     *
160
+     * @return array
161
+     */
162
+    public function get_table_attributes() {
163
+        return $this->attributes[ self::TABLE_KEY ];
164
+    }
165
+
166
+    /**
167
+     * Get the model's original attributes.
168
+     *
169
+     * @return array
170
+     */
171
+    public function get_original_table_attributes() {
172
+        return $this->original[ self::TABLE_KEY ];
173
+    }
174
+
175
+    /**
176
+     * Retrieve an array of the attributes on the model
177
+     * that have changed compared to the model's
178
+     * original data.
179
+     *
180
+     * @return array
181
+     */
182
+    public function get_changed_table_attributes() {
183
+        $changed = array();
184
+
185
+        foreach ( $this->get_table_attributes() as $key => $value ) {
186
+            if ( $value !==
187
+                    $this->get_original_attribute( $key )
188
+            ) {
189
+                $changed[ $key ] = $value;
190
+            }
191
+        }
192
+
193
+        return $changed;
194
+    }
195
+
196
+    /**
197
+     * Get the model's underlying post.
198
+     *
199
+     * Returns the underlying WP_Post object for the model, representing
200
+     * the data that will be save in the wp_posts table.
201
+     *
202
+     * @return false|WP_Post|WP_Term
203
+     */
204
+    public function get_underlying_wp_object() {
205
+        if ( isset( $this->attributes[ self::OBJECT_KEY ] ) ) {
206
+            return $this->attributes[ self::OBJECT_KEY ];
207
+        }
208
+
209
+        return false;
210
+    }
211
+
212
+    /**
213
+     * Get the model's original underlying post.
214
+     *
215
+     * @return WP_Post
216
+     */
217
+    public function get_original_underlying_wp_object() {
218
+        return $this->original[ self::OBJECT_KEY ];
219
+    }
220
+
221
+    /**
222
+     * Get the model attributes on the WordPress object
223
+     * that have changed compared to the model's
224
+     * original attributes.
225
+     *
226
+     * @return array
227
+     */
228
+    public function get_changed_wp_object_attributes() {
229
+        $changed = array();
230
+
231
+        foreach ( $this->get_wp_object_keys() as $key ) {
232
+            if ( $this->get_attribute( $key ) !==
233
+                    $this->get_original_attribute( $key )
234
+            ) {
235
+                $changed[ $key ] = $this->get_attribute( $key );
236
+            }
237
+        }
238
+
239
+        return $changed;
240
+    }
241
+
242
+    /**
243
+     * Magic __set method.
244
+     *
245
+     * Passes the name and value to set_attribute, which is where the magic happens.
246
+     *
247
+     * @param string $name
248
+     * @param mixed  $value
249
+     */
250
+    public function __set( $name, $value ) {
251
+        $this->set_attribute( $name, $value );
252
+    }
253
+
254
+    /**
255
+     * Sets the model attributes.
256
+     *
257
+     * Checks whether the model attribute can be set, check if it
258
+     * maps to the WP_Post property, otherwise, assigns it to the
259
+     * table attribute array.
260
+     *
261
+     * @param string $name
262
+     * @param mixed  $value
263
+     *
264
+     * @return $this
265
+     *
266
+     * @throws Exception
267
+     * @throws GuardedPropertyException
268
+     */
269
+    public function set_attribute( $name, $value ) {
270
+        if ( self::OBJECT_KEY === $name ) {
271
+            if ( ! $value ) {
272
+                throw new Exception;
273
+            }
274
+
275
+            return $this->override_wp_object( $value );
276
+        }
277
+
278
+        if ( self::TABLE_KEY === $name ) {
279
+            return $this->override_table( $value );
280
+        }
281
+
282
+        if ( ! $this->is_fillable( $name ) ) {
283
+            throw new GuardedPropertyException;
284
+        }
285
+
286
+        if ( $method = $this->has_map_method( $name ) ) {
287
+            $this->attributes[ self::OBJECT_KEY ]->{$this->{$method}()} = $value;
288
+        } else {
289
+            $this->attributes[ self::TABLE_KEY ][ $name ] = $value;
290
+        }
291
+
292
+        return $this;
293
+    }
294
+
295
+    /**
296
+     * Retrieves all the attribute keys for the model.
297
+     *
298
+     * @return array
299
+     */
300
+    public function get_attribute_keys() {
301
+        if ( isset( self::$memo[ get_called_class() ][ __METHOD__ ] ) ) {
302
+            return self::$memo[ get_called_class() ][ __METHOD__ ];
303
+        }
304
+
305
+        return self::$memo[ get_called_class() ][ __METHOD__ ]
306
+            = array_merge(
307
+                $this->fillable,
308
+                $this->guarded,
309
+                $this->get_compute_methods()
310
+            );
311
+    }
312
+
313
+    /**
314
+     * Retrieves the attribute keys that aren't mapped to a post.
315
+     *
316
+     * @return array
317
+     */
318
+    public function get_table_keys() {
319
+        if ( isset( self::$memo[ get_called_class() ][ __METHOD__ ] ) ) {
320
+            return self::$memo[ get_called_class() ][ __METHOD__ ];
321
+        }
322
+
323
+        $keys = array();
324
+
325
+        foreach ( $this->get_attribute_keys() as $key ) {
326
+            if ( ! $this->has_map_method( $key ) &&
327
+                 ! $this->has_compute_method( $key )
328
+            ) {
329
+                $keys[] = $key;
330
+            }
331
+        }
332
+
333
+        return self::$memo[ get_called_class() ][ __METHOD__ ] = $keys;
334
+    }
335
+
336
+    /**
337
+     * Retrieves the attribute keys that are mapped to a post.
338
+     *
339
+     * @return array
340
+     */
341
+    public function get_wp_object_keys() {
342
+        if ( isset( self::$memo[ get_called_class() ][ __METHOD__ ] ) ) {
343
+            return self::$memo[ get_called_class() ][ __METHOD__ ];
344
+        }
345
+
346
+        $keys = array();
347
+
348
+        foreach ( $this->get_attribute_keys() as $key ) {
349
+            if ( $this->has_map_method( $key ) ) {
350
+                $keys[] = $key;
351
+            }
352
+        }
353
+
354
+        return self::$memo[ get_called_class() ][ __METHOD__ ] = $keys;
355
+    }
356
+
357
+    /**
358
+     * Returns the model's keys that are computed at call time.
359
+     *
360
+     * @return array
361
+     */
362
+    public function get_computed_keys() {
363
+        if ( isset( self::$memo[ get_called_class() ][ __METHOD__ ] ) ) {
364
+            return self::$memo[ get_called_class() ][ __METHOD__ ];
365
+        }
366
+
367
+        $keys = array();
368
+
369
+        foreach ( $this->get_attribute_keys() as $key ) {
370
+            if ( $this->has_compute_method( $key ) ) {
371
+                $keys[] = $key;
372
+            }
373
+        }
374
+
375
+        return self::$memo[ get_called_class() ][ __METHOD__ ] = $keys;
376
+    }
377
+
378
+    /**
379
+     * Serializes the model's public data into an array.
380
+     *
381
+     * @return array
382
+     */
383
+    public function serialize() {
384
+        $attributes = array();
385
+
386
+        if ( $this->visible ) {
387
+            // If visible attributes are set, we'll only reveal those.
388
+            foreach ( $this->visible as $key ) {
389
+                $attributes[ $key ] = $this->get_attribute( $key );
390
+            }
391
+        } elseif ( $this->hidden ) {
392
+            // If hidden attributes are set, we'll grab everything and hide those.
393
+            foreach ( $this->get_attribute_keys() as $key ) {
394
+                if ( ! in_array( $key, $this->hidden ) ) {
395
+                    $attributes[ $key ] = $this->get_attribute( $key );
396
+                }
397
+            }
398
+        } else {
399
+            // If nothing is hidden/visible, we'll grab and reveal everything.
400
+            foreach ( $this->get_attribute_keys() as $key ) {
401
+                $attributes[ $key ] = $this->get_attribute( $key );
402
+            }
403
+        }
404
+
405
+        return array_map( function ( $attribute ) {
406
+            if ( $attribute instanceof Serializes ) {
407
+                return $attribute->serialize();
408
+            }
409
+
410
+            return $attribute;
411
+        }, $attributes );
412
+    }
413
+
414
+    /**
415
+     * Syncs the current attributes to the model's original.
416
+     *
417
+     * @return $this
418
+     */
419
+    public function sync_original() {
420
+        $this->original = $this->attributes;
421
+
422
+        if ( $this->attributes[ self::OBJECT_KEY ] ) {
423
+            $this->original[ self::OBJECT_KEY ] = clone $this->attributes[ self::OBJECT_KEY ];
424
+        }
425
+
426
+        foreach ( $this->original[ self::TABLE_KEY ] as $key => $item ) {
427
+            if ( is_object( $item ) ) {
428
+                $this->original[ $key ] = clone $item;
429
+            }
430
+        }
431
+
432
+        return $this;
433
+    }
434
+
435
+    /**
436
+     * Checks if a given attribute is mass-fillable.
437
+     *
438
+     * Returns true if the attribute can be filled, false if it can't.
439
+     *
440
+     * @param string $name
441
+     *
442
+     * @return bool
443
+     */
444
+    private function is_fillable( $name ) {
445
+        // If this model isn't guarded, everything is fillable.
446
+        if ( ! $this->is_guarded ) {
447
+            return true;
448
+        }
449
+
450
+        // If it's in the fillable array, then it's fillable.
451
+        if ( in_array( $name, $this->fillable ) ) {
452
+            return true;
453
+        }
454
+
455
+        // If it's explicitly guarded, then it's not fillable.
456
+        if ( in_array( $name, $this->guarded ) ) {
457
+            return false;
458
+        }
459
+
460
+        // If fillable hasn't been defined, then everything else fillable.
461
+        return ! $this->fillable;
462
+    }
463
+
464
+    /**
465
+     * Overrides the current WordPress object with a provided one.
466
+     *
467
+     * Resets the post's default values and stores it in the attributes.
468
+     *
469
+     * @param WP_Post|WP_Term $value
470
+     *
471
+     * @return $this
472
+     */
473
+    private function override_wp_object( $value ) {
474
+        $this->attributes[ self::OBJECT_KEY ] = $this->set_wp_object_constants( $value );
475
+
476
+        return $this;
477
+    }
478
+
479
+    /**
480
+     * Overrides the current table attributes array with a provided one.
481
+     *
482
+     * @param array $value
483
+     *
484
+     * @return $this
485
+     */
486
+    private function override_table( array $value ) {
487
+        $this->attributes[ self::TABLE_KEY ] = $value;
488
+
489
+        return $this;
490
+    }
491
+
492
+    /**
493
+     * Create and set with a new blank post.
494
+     *
495
+     * Creates a new WP_Post object, assigns it the default attributes,
496
+     * and stores it in the attributes.
497
+     *
498
+     * @throws LogicException
499
+     */
500
+    private function create_wp_object() {
501
+        switch ( true ) {
502
+            case $this instanceof UsesWordPressPost:
503
+                $object = new WP_Post( (object) array() );
504
+                break;
505
+            case $this instanceof UsesWordPressTerm:
506
+                $object = new WP_Term( (object) array() );
507
+                break;
508
+            default:
509
+                throw new LogicException;
510
+                break;
511
+        }
512
+
513
+        $this->attributes[ self::OBJECT_KEY ] = $this->set_wp_object_constants( $object );
514
+    }
515
+
516
+    /**
517
+     * Enforces values on the post that can't change.
518
+     *
519
+     * Primarily, this is used to make sure the post_type always maps
520
+     * to the model's "$type" property, but this can all be overridden
521
+     * by the developer to enforce other values in the model.
522
+     *
523
+     * @param object $object
524
+     *
525
+     * @return object
526
+     */
527
+    protected function set_wp_object_constants( $object ) {
528
+        if ( $this instanceof UsesWordPressPost ) {
529
+            $object->post_type = static::get_post_type();
530
+        }
531
+
532
+        if ( $this instanceof UsesWordPressTerm ) {
533
+            $object->taxonomy = static::get_taxonomy();
534
+        }
535
+
536
+        return $object;
537
+    }
538
+
539
+    /**
540
+     * Magic __get method.
541
+     *
542
+     * Passes the name and value to get_attribute, which is where the magic happens.
543
+     *
544
+     * @param string $name
545
+     *
546
+     * @return mixed
547
+     */
548
+    public function __get( $name ) {
549
+        return $this->get_attribute( $name );
550
+    }
551
+
552
+    /**
553
+     * Retrieves the model attribute.
554
+     *
555
+     * @param string $name
556
+     *
557
+     * @return mixed
558
+     *
559
+     * @throws PropertyDoesNotExistException If property isn't found.
560
+     */
561
+    public function get_attribute( $name ) {
562
+        if ( $method = $this->has_map_method( $name ) ) {
563
+            $value = $this->attributes[ self::OBJECT_KEY ]->{$this->{$method}()};
564
+        } elseif ( $method = $this->has_compute_method( $name ) ) {
565
+            $value = $this->{$method}();
566
+        } else {
567
+            if ( ! isset( $this->attributes[ self::TABLE_KEY ][ $name ] ) ) {
568
+                throw new PropertyDoesNotExistException( $name );
569
+            }
570
+
571
+            $value = $this->attributes[ self::TABLE_KEY ][ $name ];
572
+        }
573
+
574
+        return $value;
575
+    }
576
+
577
+    /**
578
+     * Retrieve the model's original attribute value.
579
+     *
580
+     * @param string $name
581
+     *
582
+     * @return mixed
583
+     *
584
+     * @throws PropertyDoesNotExistException If property isn't found.
585
+     */
586
+    public function get_original_attribute( $name ) {
587
+        $original_attributes = $this->original;
588
+
589
+        if ( ! is_object( $original_attributes[ static::OBJECT_KEY ] ) ) {
590
+            unset( $original_attributes[ static::OBJECT_KEY ] );
591
+        }
592
+
593
+        $original = new static( $original_attributes );
594
+
595
+        try {
596
+            return $original->get_attribute( $name );
597
+        } catch ( Exception $exception ) {
598
+            return null;
599
+        }
600
+    }
601
+
602
+    /**
603
+     * Fetches the Model's primary ID, depending on the model
604
+     * implementation.
605
+     *
606
+     * @return int
607
+     *
608
+     * @throws LogicException
609
+     */
610
+    public function get_primary_id() {
611
+        if ( $this instanceof UsesWordPressPost ) {
612
+            return $this->get_underlying_wp_object()->ID;
613
+        }
614
+
615
+        if ( $this instanceof UsesWordPressTerm ) {
616
+            return $this->get_underlying_wp_object()->term_id;
617
+        }
618
+
619
+        // Model w/o wp_object not yet supported.
620
+        throw new LogicException;
621
+    }
622
+
623
+    /**
624
+     * Checks whether the attribute has a map method.
625
+     *
626
+     * This is used to determine whether the attribute maps to a
627
+     * property on the underlying WP_Post object. Returns the
628
+     * method if one exists, returns false if it doesn't.
629
+     *
630
+     * @param string $name
631
+     *
632
+     * @return false|string
633
+     */
634
+    protected function has_map_method( $name ) {
635
+        if ( method_exists( $this, $method = "map_{$name}" ) ) {
636
+            return $method;
637
+        }
638
+
639
+        return false;
640
+    }
641
+
642
+    /**
643
+     * Checks whether the attribute has a compute method.
644
+     *
645
+     * This is used to determine if the attribute should be computed
646
+     * from other attributes.
647
+     *
648
+     * @param string $name
649
+     *
650
+     * @return false|string
651
+     */
652
+    protected function has_compute_method( $name ) {
653
+        if ( method_exists( $this, $method = "compute_{$name}" ) ) {
654
+            return $method;
655
+        }
656
+
657
+        return false;
658
+    }
659
+
660
+    /**
661
+     * Clears all the current attributes from the model.
662
+     *
663
+     * This does not touch the model's original attributes, and will
664
+     * only clear fillable attributes, unless the model is unguarded.
665
+     *
666
+     * @return $this
667
+     */
668
+    public function clear() {
669
+        $keys = array_merge(
670
+            $this->get_table_keys(),
671
+            $this->get_wp_object_keys()
672
+        );
673
+
674
+        foreach ( $keys as $key ) {
675
+            try {
676
+                $this->set_attribute( $key, null );
677
+            } catch ( GuardedPropertyException $e ) {
678
+                // We won't clear out guarded attributes.
679
+            }
680
+        }
681
+
682
+        return $this;
683
+    }
684
+
685
+    /**
686
+     * Unguards the model.
687
+     *
688
+     * Sets the model to be unguarded, allowing the filling of
689
+     * guarded attributes.
690
+     */
691
+    public function unguard() {
692
+        $this->is_guarded = false;
693
+    }
694
+
695
+    /**
696
+     * Reguards the model.
697
+     *
698
+     * Sets the model to be guarded, preventing filling of
699
+     * guarded attributes.
700
+     */
701
+    public function reguard() {
702
+        $this->is_guarded = true;
703
+    }
704
+
705
+    /**
706
+     * Retrieves all the compute methods on the model.
707
+     *
708
+     * @return array
709
+     */
710
+    protected function get_compute_methods() {
711
+        $methods = get_class_methods( get_called_class() );
712
+        $methods = array_filter( $methods, function ( $method ) {
713
+            return strrpos( $method, 'compute_', - strlen( $method ) ) !== false;
714
+        } );
715
+        $methods = array_map( function ( $method ) {
716
+            return substr( $method, strlen( 'compute_' ) );
717
+        }, $methods );
718
+
719
+        return $methods;
720
+    }
721
+
722
+    /**
723
+     * Sets up the memo array for the creating model.
724
+     */
725
+    private function maybe_boot() {
726
+        if ( ! isset( self::$memo[ get_called_class() ] ) ) {
727
+            self::$memo[ get_called_class() ] = array();
728
+        }
729
+    }
730
+
731
+    /**
732
+     * Whether this Model uses an underlying WordPress object.
733
+     *
734
+     * @return bool
735
+     */
736
+    protected function uses_wp_object() {
737
+        return $this instanceof UsesWordPressPost ||
738
+            $this instanceof UsesWordPressTerm;
739
+    }
740 740
 }
Please login to merge, or discard this patch.
Spacing   +117 added lines, -117 removed lines patch added patch discarded remove patch
@@ -107,16 +107,16 @@  discard block
 block discarded – undo
107 107
 	 *
108 108
 	 * @param array <string, mixed> $attributes
109 109
 	 */
110
-	public function __construct( array $attributes = array() ) {
110
+	public function __construct(array $attributes = array()) {
111 111
 		$this->maybe_boot();
112 112
 		$this->sync_original();
113 113
 
114
-		if ( $this->uses_wp_object() ) {
114
+		if ($this->uses_wp_object()) {
115 115
 			$this->create_wp_object();
116 116
 		}
117 117
 
118 118
 		$this->unguard();
119
-		$this->refresh( $attributes );
119
+		$this->refresh($attributes);
120 120
 		$this->reguard();
121 121
 	}
122 122
 
@@ -130,10 +130,10 @@  discard block
 block discarded – undo
130 130
 	 *
131 131
 	 * @return $this
132 132
 	 */
133
-	public function refresh( array $attributes ) {
133
+	public function refresh(array $attributes) {
134 134
 		$this->clear();
135 135
 
136
-		return $this->merge( $attributes );
136
+		return $this->merge($attributes);
137 137
 	}
138 138
 
139 139
 	/**
@@ -143,9 +143,9 @@  discard block
 block discarded – undo
143 143
 	 *
144 144
 	 * @return $this
145 145
 	 */
146
-	public function merge( array $attributes ) {
147
-		foreach ( $attributes as $name => $value ) {
148
-			$this->set_attribute( $name, $value );
146
+	public function merge(array $attributes) {
147
+		foreach ($attributes as $name => $value) {
148
+			$this->set_attribute($name, $value);
149 149
 		}
150 150
 
151 151
 		return $this;
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
 	 * @return array
161 161
 	 */
162 162
 	public function get_table_attributes() {
163
-		return $this->attributes[ self::TABLE_KEY ];
163
+		return $this->attributes[self::TABLE_KEY];
164 164
 	}
165 165
 
166 166
 	/**
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
 	 * @return array
170 170
 	 */
171 171
 	public function get_original_table_attributes() {
172
-		return $this->original[ self::TABLE_KEY ];
172
+		return $this->original[self::TABLE_KEY];
173 173
 	}
174 174
 
175 175
 	/**
@@ -182,11 +182,11 @@  discard block
 block discarded – undo
182 182
 	public function get_changed_table_attributes() {
183 183
 		$changed = array();
184 184
 
185
-		foreach ( $this->get_table_attributes() as $key => $value ) {
186
-			if ( $value !==
187
-			     $this->get_original_attribute( $key )
185
+		foreach ($this->get_table_attributes() as $key => $value) {
186
+			if ($value !==
187
+			     $this->get_original_attribute($key)
188 188
 			) {
189
-				$changed[ $key ] = $value;
189
+				$changed[$key] = $value;
190 190
 			}
191 191
 		}
192 192
 
@@ -202,8 +202,8 @@  discard block
 block discarded – undo
202 202
 	 * @return false|WP_Post|WP_Term
203 203
 	 */
204 204
 	public function get_underlying_wp_object() {
205
-		if ( isset( $this->attributes[ self::OBJECT_KEY ] ) ) {
206
-			return $this->attributes[ self::OBJECT_KEY ];
205
+		if (isset($this->attributes[self::OBJECT_KEY])) {
206
+			return $this->attributes[self::OBJECT_KEY];
207 207
 		}
208 208
 
209 209
 		return false;
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
 	 * @return WP_Post
216 216
 	 */
217 217
 	public function get_original_underlying_wp_object() {
218
-		return $this->original[ self::OBJECT_KEY ];
218
+		return $this->original[self::OBJECT_KEY];
219 219
 	}
220 220
 
221 221
 	/**
@@ -228,11 +228,11 @@  discard block
 block discarded – undo
228 228
 	public function get_changed_wp_object_attributes() {
229 229
 		$changed = array();
230 230
 
231
-		foreach ( $this->get_wp_object_keys() as $key ) {
232
-			if ( $this->get_attribute( $key ) !==
233
-			     $this->get_original_attribute( $key )
231
+		foreach ($this->get_wp_object_keys() as $key) {
232
+			if ($this->get_attribute($key) !==
233
+			     $this->get_original_attribute($key)
234 234
 			) {
235
-				$changed[ $key ] = $this->get_attribute( $key );
235
+				$changed[$key] = $this->get_attribute($key);
236 236
 			}
237 237
 		}
238 238
 
@@ -247,8 +247,8 @@  discard block
 block discarded – undo
247 247
 	 * @param string $name
248 248
 	 * @param mixed  $value
249 249
 	 */
250
-	public function __set( $name, $value ) {
251
-		$this->set_attribute( $name, $value );
250
+	public function __set($name, $value) {
251
+		$this->set_attribute($name, $value);
252 252
 	}
253 253
 
254 254
 	/**
@@ -266,27 +266,27 @@  discard block
 block discarded – undo
266 266
 	 * @throws Exception
267 267
 	 * @throws GuardedPropertyException
268 268
 	 */
269
-	public function set_attribute( $name, $value ) {
270
-		if ( self::OBJECT_KEY === $name ) {
271
-			if ( ! $value ) {
269
+	public function set_attribute($name, $value) {
270
+		if (self::OBJECT_KEY === $name) {
271
+			if (!$value) {
272 272
 				throw new Exception;
273 273
 			}
274 274
 
275
-			return $this->override_wp_object( $value );
275
+			return $this->override_wp_object($value);
276 276
 		}
277 277
 
278
-		if ( self::TABLE_KEY === $name ) {
279
-			return $this->override_table( $value );
278
+		if (self::TABLE_KEY === $name) {
279
+			return $this->override_table($value);
280 280
 		}
281 281
 
282
-		if ( ! $this->is_fillable( $name ) ) {
282
+		if (!$this->is_fillable($name)) {
283 283
 			throw new GuardedPropertyException;
284 284
 		}
285 285
 
286
-		if ( $method = $this->has_map_method( $name ) ) {
287
-			$this->attributes[ self::OBJECT_KEY ]->{$this->{$method}()} = $value;
286
+		if ($method = $this->has_map_method($name)) {
287
+			$this->attributes[self::OBJECT_KEY]->{$this->{$method}()} = $value;
288 288
 		} else {
289
-			$this->attributes[ self::TABLE_KEY ][ $name ] = $value;
289
+			$this->attributes[self::TABLE_KEY][$name] = $value;
290 290
 		}
291 291
 
292 292
 		return $this;
@@ -298,11 +298,11 @@  discard block
 block discarded – undo
298 298
 	 * @return array
299 299
 	 */
300 300
 	public function get_attribute_keys() {
301
-		if ( isset( self::$memo[ get_called_class() ][ __METHOD__ ] ) ) {
302
-			return self::$memo[ get_called_class() ][ __METHOD__ ];
301
+		if (isset(self::$memo[get_called_class()][__METHOD__])) {
302
+			return self::$memo[get_called_class()][__METHOD__];
303 303
 		}
304 304
 
305
-		return self::$memo[ get_called_class() ][ __METHOD__ ]
305
+		return self::$memo[get_called_class()][__METHOD__]
306 306
 			= array_merge(
307 307
 				$this->fillable,
308 308
 				$this->guarded,
@@ -316,21 +316,21 @@  discard block
 block discarded – undo
316 316
 	 * @return array
317 317
 	 */
318 318
 	public function get_table_keys() {
319
-		if ( isset( self::$memo[ get_called_class() ][ __METHOD__ ] ) ) {
320
-			return self::$memo[ get_called_class() ][ __METHOD__ ];
319
+		if (isset(self::$memo[get_called_class()][__METHOD__])) {
320
+			return self::$memo[get_called_class()][__METHOD__];
321 321
 		}
322 322
 
323 323
 		$keys = array();
324 324
 
325
-		foreach ( $this->get_attribute_keys() as $key ) {
326
-			if ( ! $this->has_map_method( $key ) &&
327
-			     ! $this->has_compute_method( $key )
325
+		foreach ($this->get_attribute_keys() as $key) {
326
+			if (!$this->has_map_method($key) &&
327
+			     !$this->has_compute_method($key)
328 328
 			) {
329 329
 				$keys[] = $key;
330 330
 			}
331 331
 		}
332 332
 
333
-		return self::$memo[ get_called_class() ][ __METHOD__ ] = $keys;
333
+		return self::$memo[get_called_class()][__METHOD__] = $keys;
334 334
 	}
335 335
 
336 336
 	/**
@@ -339,19 +339,19 @@  discard block
 block discarded – undo
339 339
 	 * @return array
340 340
 	 */
341 341
 	public function get_wp_object_keys() {
342
-		if ( isset( self::$memo[ get_called_class() ][ __METHOD__ ] ) ) {
343
-			return self::$memo[ get_called_class() ][ __METHOD__ ];
342
+		if (isset(self::$memo[get_called_class()][__METHOD__])) {
343
+			return self::$memo[get_called_class()][__METHOD__];
344 344
 		}
345 345
 
346 346
 		$keys = array();
347 347
 
348
-		foreach ( $this->get_attribute_keys() as $key ) {
349
-			if ( $this->has_map_method( $key ) ) {
348
+		foreach ($this->get_attribute_keys() as $key) {
349
+			if ($this->has_map_method($key)) {
350 350
 				$keys[] = $key;
351 351
 			}
352 352
 		}
353 353
 
354
-		return self::$memo[ get_called_class() ][ __METHOD__ ] = $keys;
354
+		return self::$memo[get_called_class()][__METHOD__] = $keys;
355 355
 	}
356 356
 
357 357
 	/**
@@ -360,19 +360,19 @@  discard block
 block discarded – undo
360 360
 	 * @return array
361 361
 	 */
362 362
 	public function get_computed_keys() {
363
-		if ( isset( self::$memo[ get_called_class() ][ __METHOD__ ] ) ) {
364
-			return self::$memo[ get_called_class() ][ __METHOD__ ];
363
+		if (isset(self::$memo[get_called_class()][__METHOD__])) {
364
+			return self::$memo[get_called_class()][__METHOD__];
365 365
 		}
366 366
 
367 367
 		$keys = array();
368 368
 
369
-		foreach ( $this->get_attribute_keys() as $key ) {
370
-			if ( $this->has_compute_method( $key ) ) {
369
+		foreach ($this->get_attribute_keys() as $key) {
370
+			if ($this->has_compute_method($key)) {
371 371
 				$keys[] = $key;
372 372
 			}
373 373
 		}
374 374
 
375
-		return self::$memo[ get_called_class() ][ __METHOD__ ] = $keys;
375
+		return self::$memo[get_called_class()][__METHOD__] = $keys;
376 376
 	}
377 377
 
378 378
 	/**
@@ -383,32 +383,32 @@  discard block
 block discarded – undo
383 383
 	public function serialize() {
384 384
 		$attributes = array();
385 385
 
386
-		if ( $this->visible ) {
386
+		if ($this->visible) {
387 387
 			// If visible attributes are set, we'll only reveal those.
388
-			foreach ( $this->visible as $key ) {
389
-				$attributes[ $key ] = $this->get_attribute( $key );
388
+			foreach ($this->visible as $key) {
389
+				$attributes[$key] = $this->get_attribute($key);
390 390
 			}
391
-		} elseif ( $this->hidden ) {
391
+		} elseif ($this->hidden) {
392 392
 			// If hidden attributes are set, we'll grab everything and hide those.
393
-			foreach ( $this->get_attribute_keys() as $key ) {
394
-				if ( ! in_array( $key, $this->hidden ) ) {
395
-					$attributes[ $key ] = $this->get_attribute( $key );
393
+			foreach ($this->get_attribute_keys() as $key) {
394
+				if (!in_array($key, $this->hidden)) {
395
+					$attributes[$key] = $this->get_attribute($key);
396 396
 				}
397 397
 			}
398 398
 		} else {
399 399
 			// If nothing is hidden/visible, we'll grab and reveal everything.
400
-			foreach ( $this->get_attribute_keys() as $key ) {
401
-				$attributes[ $key ] = $this->get_attribute( $key );
400
+			foreach ($this->get_attribute_keys() as $key) {
401
+				$attributes[$key] = $this->get_attribute($key);
402 402
 			}
403 403
 		}
404 404
 
405
-		return array_map( function ( $attribute ) {
406
-			if ( $attribute instanceof Serializes ) {
405
+		return array_map(function($attribute) {
406
+			if ($attribute instanceof Serializes) {
407 407
 				return $attribute->serialize();
408 408
 			}
409 409
 
410 410
 			return $attribute;
411
-		}, $attributes );
411
+		}, $attributes);
412 412
 	}
413 413
 
414 414
 	/**
@@ -419,13 +419,13 @@  discard block
 block discarded – undo
419 419
 	public function sync_original() {
420 420
 		$this->original = $this->attributes;
421 421
 
422
-		if ( $this->attributes[ self::OBJECT_KEY ] ) {
423
-			$this->original[ self::OBJECT_KEY ] = clone $this->attributes[ self::OBJECT_KEY ];
422
+		if ($this->attributes[self::OBJECT_KEY]) {
423
+			$this->original[self::OBJECT_KEY] = clone $this->attributes[self::OBJECT_KEY];
424 424
 		}
425 425
 
426
-		foreach ( $this->original[ self::TABLE_KEY ] as $key => $item ) {
427
-			if ( is_object( $item ) ) {
428
-				$this->original[ $key ] = clone $item;
426
+		foreach ($this->original[self::TABLE_KEY] as $key => $item) {
427
+			if (is_object($item)) {
428
+				$this->original[$key] = clone $item;
429 429
 			}
430 430
 		}
431 431
 
@@ -441,24 +441,24 @@  discard block
 block discarded – undo
441 441
 	 *
442 442
 	 * @return bool
443 443
 	 */
444
-	private function is_fillable( $name ) {
444
+	private function is_fillable($name) {
445 445
 		// If this model isn't guarded, everything is fillable.
446
-		if ( ! $this->is_guarded ) {
446
+		if (!$this->is_guarded) {
447 447
 			return true;
448 448
 		}
449 449
 
450 450
 		// If it's in the fillable array, then it's fillable.
451
-		if ( in_array( $name, $this->fillable ) ) {
451
+		if (in_array($name, $this->fillable)) {
452 452
 			return true;
453 453
 		}
454 454
 
455 455
 		// If it's explicitly guarded, then it's not fillable.
456
-		if ( in_array( $name, $this->guarded ) ) {
456
+		if (in_array($name, $this->guarded)) {
457 457
 			return false;
458 458
 		}
459 459
 
460 460
 		// If fillable hasn't been defined, then everything else fillable.
461
-		return ! $this->fillable;
461
+		return !$this->fillable;
462 462
 	}
463 463
 
464 464
 	/**
@@ -470,8 +470,8 @@  discard block
 block discarded – undo
470 470
 	 *
471 471
 	 * @return $this
472 472
 	 */
473
-	private function override_wp_object( $value ) {
474
-		$this->attributes[ self::OBJECT_KEY ] = $this->set_wp_object_constants( $value );
473
+	private function override_wp_object($value) {
474
+		$this->attributes[self::OBJECT_KEY] = $this->set_wp_object_constants($value);
475 475
 
476 476
 		return $this;
477 477
 	}
@@ -483,8 +483,8 @@  discard block
 block discarded – undo
483 483
 	 *
484 484
 	 * @return $this
485 485
 	 */
486
-	private function override_table( array $value ) {
487
-		$this->attributes[ self::TABLE_KEY ] = $value;
486
+	private function override_table(array $value) {
487
+		$this->attributes[self::TABLE_KEY] = $value;
488 488
 
489 489
 		return $this;
490 490
 	}
@@ -498,19 +498,19 @@  discard block
 block discarded – undo
498 498
 	 * @throws LogicException
499 499
 	 */
500 500
 	private function create_wp_object() {
501
-		switch ( true ) {
501
+		switch (true) {
502 502
 			case $this instanceof UsesWordPressPost:
503
-				$object = new WP_Post( (object) array() );
503
+				$object = new WP_Post((object) array());
504 504
 				break;
505 505
 			case $this instanceof UsesWordPressTerm:
506
-				$object = new WP_Term( (object) array() );
506
+				$object = new WP_Term((object) array());
507 507
 				break;
508 508
 			default:
509 509
 				throw new LogicException;
510 510
 				break;
511 511
 		}
512 512
 
513
-		$this->attributes[ self::OBJECT_KEY ] = $this->set_wp_object_constants( $object );
513
+		$this->attributes[self::OBJECT_KEY] = $this->set_wp_object_constants($object);
514 514
 	}
515 515
 
516 516
 	/**
@@ -524,12 +524,12 @@  discard block
 block discarded – undo
524 524
 	 *
525 525
 	 * @return object
526 526
 	 */
527
-	protected function set_wp_object_constants( $object ) {
528
-		if ( $this instanceof UsesWordPressPost ) {
527
+	protected function set_wp_object_constants($object) {
528
+		if ($this instanceof UsesWordPressPost) {
529 529
 			$object->post_type = static::get_post_type();
530 530
 		}
531 531
 
532
-		if ( $this instanceof UsesWordPressTerm ) {
532
+		if ($this instanceof UsesWordPressTerm) {
533 533
 			$object->taxonomy = static::get_taxonomy();
534 534
 		}
535 535
 
@@ -545,8 +545,8 @@  discard block
 block discarded – undo
545 545
 	 *
546 546
 	 * @return mixed
547 547
 	 */
548
-	public function __get( $name ) {
549
-		return $this->get_attribute( $name );
548
+	public function __get($name) {
549
+		return $this->get_attribute($name);
550 550
 	}
551 551
 
552 552
 	/**
@@ -558,17 +558,17 @@  discard block
 block discarded – undo
558 558
 	 *
559 559
 	 * @throws PropertyDoesNotExistException If property isn't found.
560 560
 	 */
561
-	public function get_attribute( $name ) {
562
-		if ( $method = $this->has_map_method( $name ) ) {
563
-			$value = $this->attributes[ self::OBJECT_KEY ]->{$this->{$method}()};
564
-		} elseif ( $method = $this->has_compute_method( $name ) ) {
561
+	public function get_attribute($name) {
562
+		if ($method = $this->has_map_method($name)) {
563
+			$value = $this->attributes[self::OBJECT_KEY]->{$this->{$method}()};
564
+		} elseif ($method = $this->has_compute_method($name)) {
565 565
 			$value = $this->{$method}();
566 566
 		} else {
567
-			if ( ! isset( $this->attributes[ self::TABLE_KEY ][ $name ] ) ) {
568
-				throw new PropertyDoesNotExistException( $name );
567
+			if (!isset($this->attributes[self::TABLE_KEY][$name])) {
568
+				throw new PropertyDoesNotExistException($name);
569 569
 			}
570 570
 
571
-			$value = $this->attributes[ self::TABLE_KEY ][ $name ];
571
+			$value = $this->attributes[self::TABLE_KEY][$name];
572 572
 		}
573 573
 
574 574
 		return $value;
@@ -583,18 +583,18 @@  discard block
 block discarded – undo
583 583
 	 *
584 584
 	 * @throws PropertyDoesNotExistException If property isn't found.
585 585
 	 */
586
-	public function get_original_attribute( $name ) {
586
+	public function get_original_attribute($name) {
587 587
 		$original_attributes = $this->original;
588 588
 
589
-		if ( ! is_object( $original_attributes[ static::OBJECT_KEY ] ) ) {
590
-			unset( $original_attributes[ static::OBJECT_KEY ] );
589
+		if (!is_object($original_attributes[static::OBJECT_KEY])) {
590
+			unset($original_attributes[static::OBJECT_KEY]);
591 591
 		}
592 592
 
593
-		$original = new static( $original_attributes );
593
+		$original = new static($original_attributes);
594 594
 
595 595
 		try {
596
-			return $original->get_attribute( $name );
597
-		} catch ( Exception $exception ) {
596
+			return $original->get_attribute($name);
597
+		} catch (Exception $exception) {
598 598
 			return null;
599 599
 		}
600 600
 	}
@@ -608,11 +608,11 @@  discard block
 block discarded – undo
608 608
 	 * @throws LogicException
609 609
 	 */
610 610
 	public function get_primary_id() {
611
-		if ( $this instanceof UsesWordPressPost ) {
611
+		if ($this instanceof UsesWordPressPost) {
612 612
 			return $this->get_underlying_wp_object()->ID;
613 613
 		}
614 614
 
615
-		if ( $this instanceof UsesWordPressTerm ) {
615
+		if ($this instanceof UsesWordPressTerm) {
616 616
 			return $this->get_underlying_wp_object()->term_id;
617 617
 		}
618 618
 
@@ -631,8 +631,8 @@  discard block
 block discarded – undo
631 631
 	 *
632 632
 	 * @return false|string
633 633
 	 */
634
-	protected function has_map_method( $name ) {
635
-		if ( method_exists( $this, $method = "map_{$name}" ) ) {
634
+	protected function has_map_method($name) {
635
+		if (method_exists($this, $method = "map_{$name}")) {
636 636
 			return $method;
637 637
 		}
638 638
 
@@ -649,8 +649,8 @@  discard block
 block discarded – undo
649 649
 	 *
650 650
 	 * @return false|string
651 651
 	 */
652
-	protected function has_compute_method( $name ) {
653
-		if ( method_exists( $this, $method = "compute_{$name}" ) ) {
652
+	protected function has_compute_method($name) {
653
+		if (method_exists($this, $method = "compute_{$name}")) {
654 654
 			return $method;
655 655
 		}
656 656
 
@@ -671,10 +671,10 @@  discard block
 block discarded – undo
671 671
 			$this->get_wp_object_keys()
672 672
 		);
673 673
 
674
-		foreach ( $keys as $key ) {
674
+		foreach ($keys as $key) {
675 675
 			try {
676
-				$this->set_attribute( $key, null );
677
-			} catch ( GuardedPropertyException $e ) {
676
+				$this->set_attribute($key, null);
677
+			} catch (GuardedPropertyException $e) {
678 678
 				// We won't clear out guarded attributes.
679 679
 			}
680 680
 		}
@@ -708,13 +708,13 @@  discard block
 block discarded – undo
708 708
 	 * @return array
709 709
 	 */
710 710
 	protected function get_compute_methods() {
711
-		$methods = get_class_methods( get_called_class() );
712
-		$methods = array_filter( $methods, function ( $method ) {
713
-			return strrpos( $method, 'compute_', - strlen( $method ) ) !== false;
711
+		$methods = get_class_methods(get_called_class());
712
+		$methods = array_filter($methods, function($method) {
713
+			return strrpos($method, 'compute_', - strlen($method)) !== false;
714 714
 		} );
715
-		$methods = array_map( function ( $method ) {
716
-			return substr( $method, strlen( 'compute_' ) );
717
-		}, $methods );
715
+		$methods = array_map(function($method) {
716
+			return substr($method, strlen('compute_'));
717
+		}, $methods);
718 718
 
719 719
 		return $methods;
720 720
 	}
@@ -723,8 +723,8 @@  discard block
 block discarded – undo
723 723
 	 * Sets up the memo array for the creating model.
724 724
 	 */
725 725
 	private function maybe_boot() {
726
-		if ( ! isset( self::$memo[ get_called_class() ] ) ) {
727
-			self::$memo[ get_called_class() ] = array();
726
+		if (!isset(self::$memo[get_called_class()])) {
727
+			self::$memo[get_called_class()] = array();
728 728
 		}
729 729
 	}
730 730
 
Please login to merge, or discard this patch.
src/Axolotl/Collection.php 2 patches
Spacing   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -48,11 +48,11 @@  discard block
 block discarded – undo
48 48
 	 * @param array $elements
49 49
 	 * @param array $config
50 50
 	 */
51
-	public function __construct( array $elements = array(), array $config = array() ) {
52
-		$this->parse_config( $this->config = $config );
51
+	public function __construct(array $elements = array(), array $config = array()) {
52
+		$this->parse_config($this->config = $config);
53 53
 
54
-		foreach ( $elements as $element ) {
55
-			$this->add( $element );
54
+		foreach ($elements as $element) {
55
+			$this->add($element);
56 56
 		}
57 57
 	}
58 58
 
@@ -63,12 +63,12 @@  discard block
 block discarded – undo
63 63
 	 *
64 64
 	 * @throws RuntimeException
65 65
 	 */
66
-	public function add( $element ) {
67
-		if ( $this->model && is_array( $element ) ) {
68
-			$element = new $this->model( $element );
66
+	public function add($element) {
67
+		if ($this->model && is_array($element)) {
68
+			$element = new $this->model($element);
69 69
 		}
70 70
 
71
-		if ( $this->model && ! ( $element instanceof $this->model ) ) {
71
+		if ($this->model && !($element instanceof $this->model)) {
72 72
 			throw new RuntimeException;
73 73
 		}
74 74
 
@@ -82,19 +82,19 @@  discard block
 block discarded – undo
82 82
 	 *
83 83
 	 * @return $this
84 84
 	 */
85
-	public function remove( $index ) {
86
-		if ( ! is_string( $index ) || ! is_numeric( $index ) || ! isset( $this->elements[ $index ] ) ) {
87
-			foreach ( $this->elements as $key => $element ) {
88
-				if ( $element === $index ) {
85
+	public function remove($index) {
86
+		if (!is_string($index) || !is_numeric($index) || !isset($this->elements[$index])) {
87
+			foreach ($this->elements as $key => $element) {
88
+				if ($element === $index) {
89 89
 					$index = $key;
90 90
 					break;
91 91
 				}
92 92
 			}
93 93
 		}
94 94
 
95
-		if ( isset( $this->elements[ $index ] ) ) {
96
-			unset( $this->elements[ $index ] );
97
-			$this->elements = array_values( $this->elements );
95
+		if (isset($this->elements[$index])) {
96
+			unset($this->elements[$index]);
97
+			$this->elements = array_values($this->elements);
98 98
 		}
99 99
 
100 100
 		return $this;
@@ -107,8 +107,8 @@  discard block
 block discarded – undo
107 107
 	 *
108 108
 	 * @return mixed
109 109
 	 */
110
-	public function at( $index ) {
111
-		return isset( $this->elements[ $index ] ) ? $this->elements[ $index ] : null;
110
+	public function at($index) {
111
+		return isset($this->elements[$index]) ? $this->elements[$index] : null;
112 112
 	}
113 113
 
114 114
 	/**
@@ -118,8 +118,8 @@  discard block
 block discarded – undo
118 118
 	 *
119 119
 	 * @return Collection
120 120
 	 */
121
-	protected function map( callable $callback ) {
122
-		return new Collection( array_map( $callback, $this->elements ), $this->config );
121
+	protected function map(callable $callback) {
122
+		return new Collection(array_map($callback, $this->elements), $this->config);
123 123
 	}
124 124
 
125 125
 	/**
@@ -129,8 +129,8 @@  discard block
 block discarded – undo
129 129
 	 *
130 130
 	 * @return Collection
131 131
 	 */
132
-	public function filter( callable $callback ) {
133
-		return new Collection( array_filter( $this->elements, $callback ) );
132
+	public function filter(callable $callback) {
133
+		return new Collection(array_filter($this->elements, $callback));
134 134
 	}
135 135
 
136 136
 	/**
@@ -139,8 +139,8 @@  discard block
 block discarded – undo
139 139
 	 * @return array
140 140
 	 */
141 141
 	public function serialize() {
142
-		return array_map(function( $element ) {
143
-			if ( $element instanceof Serializes ) {
142
+		return array_map(function($element) {
143
+			if ($element instanceof Serializes) {
144 144
 				return $element->serialize();
145 145
 			}
146 146
 
@@ -154,14 +154,14 @@  discard block
 block discarded – undo
154 154
 	 * @return mixed
155 155
 	 */
156 156
 	public function current() {
157
-		return $this->at( $this->position );
157
+		return $this->at($this->position);
158 158
 	}
159 159
 
160 160
 	/**
161 161
 	 * Move forward to next element.
162 162
 	 */
163 163
 	public function next() {
164
-		$this->position ++;
164
+		$this->position++;
165 165
 	}
166 166
 
167 167
 	/**
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
 	 * @return bool
180 180
 	 */
181 181
 	public function valid() {
182
-		return isset( $this->elements[ $this->position ] );
182
+		return isset($this->elements[$this->position]);
183 183
 	}
184 184
 
185 185
 	/**
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
 	 * @return int
196 196
 	 */
197 197
 	public function count() {
198
-		return count( $this->elements );
198
+		return count($this->elements);
199 199
 	}
200 200
 
201 201
 	/**
@@ -205,11 +205,11 @@  discard block
 block discarded – undo
205 205
 	 *
206 206
 	 * @throws LogicException
207 207
 	 */
208
-	protected function parse_config( array $config ) {
209
-		if ( isset( $config['model'] ) ) {
208
+	protected function parse_config(array $config) {
209
+		if (isset($config['model'])) {
210 210
 			$model = $config['model'];
211 211
 
212
-			if ( ! is_subclass_of( $model, 'Intraxia\Jaxion\Axolotl\Model' ) ) {
212
+			if (!is_subclass_of($model, 'Intraxia\Jaxion\Axolotl\Model')) {
213 213
 				throw new LogicException;
214 214
 			}
215 215
 
Please login to merge, or discard this patch.
Indentation   +206 added lines, -206 removed lines patch added patch discarded remove patch
@@ -14,210 +14,210 @@
 block discarded – undo
14 14
  * @subpackage Axolotl
15 15
  */
16 16
 class Collection implements Countable, Iterator, Serializes {
17
-	/**
18
-	 * Collection elements.
19
-	 *
20
-	 * @var array
21
-	 */
22
-	protected $elements = array();
23
-
24
-	/**
25
-	 * Collection configuration.
26
-	 *
27
-	 * @var array
28
-	 */
29
-	protected $config = array();
30
-
31
-	/**
32
-	 * Models registered to the collection.
33
-	 *
34
-	 * @var string
35
-	 */
36
-	protected $model;
37
-
38
-	/**
39
-	 * Where Collection is in loop.
40
-	 *
41
-	 * @var int
42
-	 */
43
-	protected $position = 0;
44
-
45
-	/**
46
-	 * Collection constructor.
47
-	 *
48
-	 * @param array $elements
49
-	 * @param array $config
50
-	 */
51
-	public function __construct( array $elements = array(), array $config = array() ) {
52
-		$this->parse_config( $this->config = $config );
53
-
54
-		foreach ( $elements as $element ) {
55
-			$this->add( $element );
56
-		}
57
-	}
58
-
59
-	/**
60
-	 * Adds a new element to the Collection.
61
-	 *
62
-	 * @param mixed $element
63
-	 *
64
-	 * @throws RuntimeException
65
-	 *
66
-	 * @return $this
67
-	 */
68
-	public function add( $element ) {
69
-		if ( $this->model && is_array( $element ) ) {
70
-			$element = new $this->model( $element );
71
-		}
72
-
73
-		if ( $this->model && ! ( $element instanceof $this->model ) ) {
74
-			throw new RuntimeException;
75
-		}
76
-
77
-		$this->elements[] = $element;
78
-
79
-		return $this;
80
-	}
81
-
82
-	/**
83
-	 * Removes an element by index or value.
84
-	 *
85
-	 * @param mixed $index
86
-	 *
87
-	 * @return $this
88
-	 */
89
-	public function remove( $index ) {
90
-		if ( ! is_string( $index ) || ! is_numeric( $index ) || ! isset( $this->elements[ $index ] ) ) {
91
-			foreach ( $this->elements as $key => $element ) {
92
-				if ( $element === $index ) {
93
-					$index = $key;
94
-					break;
95
-				}
96
-			}
97
-		}
98
-
99
-		if ( isset( $this->elements[ $index ] ) ) {
100
-			unset( $this->elements[ $index ] );
101
-			$this->elements = array_values( $this->elements );
102
-		}
103
-
104
-		return $this;
105
-	}
106
-
107
-	/**
108
-	 * Fetches the element at the provided index.
109
-	 *
110
-	 * @param int $index
111
-	 *
112
-	 * @return mixed
113
-	 */
114
-	public function at( $index ) {
115
-		return isset( $this->elements[ $index ] ) ? $this->elements[ $index ] : null;
116
-	}
117
-
118
-	/**
119
-	 * Maps over the Collection's elements,
120
-	 *
121
-	 * @param callable $callback
122
-	 *
123
-	 * @return Collection
124
-	 */
125
-	protected function map( callable $callback ) {
126
-		return new Collection( array_map( $callback, $this->elements ), $this->config );
127
-	}
128
-
129
-	/**
130
-	 * Filters the Collection's elements.
131
-	 *
132
-	 * @param callable $callback
133
-	 *
134
-	 * @return Collection
135
-	 */
136
-	public function filter( callable $callback ) {
137
-		return new Collection( array_filter( $this->elements, $callback ) );
138
-	}
139
-
140
-	/**
141
-	 * {@inheritDoc}
142
-	 *
143
-	 * @return array
144
-	 */
145
-	public function serialize() {
146
-		return array_map(function( $element ) {
147
-			if ( $element instanceof Serializes ) {
148
-				return $element->serialize();
149
-			}
150
-
151
-			return $element;
152
-		}, $this->elements);
153
-	}
154
-
155
-	/**
156
-	 * Return the current element.
157
-	 *
158
-	 * @return mixed
159
-	 */
160
-	public function current() {
161
-		return $this->at( $this->position );
162
-	}
163
-
164
-	/**
165
-	 * Move forward to next element.
166
-	 */
167
-	public function next() {
168
-		$this->position ++;
169
-	}
170
-
171
-	/**
172
-	 * Return the key of the current element.
173
-	 *
174
-	 * @return mixed
175
-	 */
176
-	public function key() {
177
-		return $this->position;
178
-	}
179
-
180
-	/**
181
-	 * Checks if current position is valid.
182
-	 *
183
-	 * @return bool
184
-	 */
185
-	public function valid() {
186
-		return isset( $this->elements[ $this->position ] );
187
-	}
188
-
189
-	/**
190
-	 * Rewind the Iterator to the first element.
191
-	 */
192
-	public function rewind() {
193
-		$this->position = 0;
194
-	}
195
-
196
-	/**
197
-	 * Count elements of an object.
198
-	 *
199
-	 * @return int
200
-	 */
201
-	public function count() {
202
-		return count( $this->elements );
203
-	}
204
-
205
-	/**
206
-	 * Parses the Collection config to set its properties.
207
-	 *
208
-	 * @param array $config
209
-	 *
210
-	 * @throws LogicException
211
-	 */
212
-	protected function parse_config( array $config ) {
213
-		if ( isset( $config['model'] ) ) {
214
-			$model = $config['model'];
215
-
216
-			if ( ! is_subclass_of( $model, 'Intraxia\Jaxion\Axolotl\Model' ) ) {
217
-				throw new LogicException;
218
-			}
219
-
220
-			$this->model = $model;
221
-		}
222
-	}
17
+    /**
18
+     * Collection elements.
19
+     *
20
+     * @var array
21
+     */
22
+    protected $elements = array();
23
+
24
+    /**
25
+     * Collection configuration.
26
+     *
27
+     * @var array
28
+     */
29
+    protected $config = array();
30
+
31
+    /**
32
+     * Models registered to the collection.
33
+     *
34
+     * @var string
35
+     */
36
+    protected $model;
37
+
38
+    /**
39
+     * Where Collection is in loop.
40
+     *
41
+     * @var int
42
+     */
43
+    protected $position = 0;
44
+
45
+    /**
46
+     * Collection constructor.
47
+     *
48
+     * @param array $elements
49
+     * @param array $config
50
+     */
51
+    public function __construct( array $elements = array(), array $config = array() ) {
52
+        $this->parse_config( $this->config = $config );
53
+
54
+        foreach ( $elements as $element ) {
55
+            $this->add( $element );
56
+        }
57
+    }
58
+
59
+    /**
60
+     * Adds a new element to the Collection.
61
+     *
62
+     * @param mixed $element
63
+     *
64
+     * @throws RuntimeException
65
+     *
66
+     * @return $this
67
+     */
68
+    public function add( $element ) {
69
+        if ( $this->model && is_array( $element ) ) {
70
+            $element = new $this->model( $element );
71
+        }
72
+
73
+        if ( $this->model && ! ( $element instanceof $this->model ) ) {
74
+            throw new RuntimeException;
75
+        }
76
+
77
+        $this->elements[] = $element;
78
+
79
+        return $this;
80
+    }
81
+
82
+    /**
83
+     * Removes an element by index or value.
84
+     *
85
+     * @param mixed $index
86
+     *
87
+     * @return $this
88
+     */
89
+    public function remove( $index ) {
90
+        if ( ! is_string( $index ) || ! is_numeric( $index ) || ! isset( $this->elements[ $index ] ) ) {
91
+            foreach ( $this->elements as $key => $element ) {
92
+                if ( $element === $index ) {
93
+                    $index = $key;
94
+                    break;
95
+                }
96
+            }
97
+        }
98
+
99
+        if ( isset( $this->elements[ $index ] ) ) {
100
+            unset( $this->elements[ $index ] );
101
+            $this->elements = array_values( $this->elements );
102
+        }
103
+
104
+        return $this;
105
+    }
106
+
107
+    /**
108
+     * Fetches the element at the provided index.
109
+     *
110
+     * @param int $index
111
+     *
112
+     * @return mixed
113
+     */
114
+    public function at( $index ) {
115
+        return isset( $this->elements[ $index ] ) ? $this->elements[ $index ] : null;
116
+    }
117
+
118
+    /**
119
+     * Maps over the Collection's elements,
120
+     *
121
+     * @param callable $callback
122
+     *
123
+     * @return Collection
124
+     */
125
+    protected function map( callable $callback ) {
126
+        return new Collection( array_map( $callback, $this->elements ), $this->config );
127
+    }
128
+
129
+    /**
130
+     * Filters the Collection's elements.
131
+     *
132
+     * @param callable $callback
133
+     *
134
+     * @return Collection
135
+     */
136
+    public function filter( callable $callback ) {
137
+        return new Collection( array_filter( $this->elements, $callback ) );
138
+    }
139
+
140
+    /**
141
+     * {@inheritDoc}
142
+     *
143
+     * @return array
144
+     */
145
+    public function serialize() {
146
+        return array_map(function( $element ) {
147
+            if ( $element instanceof Serializes ) {
148
+                return $element->serialize();
149
+            }
150
+
151
+            return $element;
152
+        }, $this->elements);
153
+    }
154
+
155
+    /**
156
+     * Return the current element.
157
+     *
158
+     * @return mixed
159
+     */
160
+    public function current() {
161
+        return $this->at( $this->position );
162
+    }
163
+
164
+    /**
165
+     * Move forward to next element.
166
+     */
167
+    public function next() {
168
+        $this->position ++;
169
+    }
170
+
171
+    /**
172
+     * Return the key of the current element.
173
+     *
174
+     * @return mixed
175
+     */
176
+    public function key() {
177
+        return $this->position;
178
+    }
179
+
180
+    /**
181
+     * Checks if current position is valid.
182
+     *
183
+     * @return bool
184
+     */
185
+    public function valid() {
186
+        return isset( $this->elements[ $this->position ] );
187
+    }
188
+
189
+    /**
190
+     * Rewind the Iterator to the first element.
191
+     */
192
+    public function rewind() {
193
+        $this->position = 0;
194
+    }
195
+
196
+    /**
197
+     * Count elements of an object.
198
+     *
199
+     * @return int
200
+     */
201
+    public function count() {
202
+        return count( $this->elements );
203
+    }
204
+
205
+    /**
206
+     * Parses the Collection config to set its properties.
207
+     *
208
+     * @param array $config
209
+     *
210
+     * @throws LogicException
211
+     */
212
+    protected function parse_config( array $config ) {
213
+        if ( isset( $config['model'] ) ) {
214
+            $model = $config['model'];
215
+
216
+            if ( ! is_subclass_of( $model, 'Intraxia\Jaxion\Axolotl\Model' ) ) {
217
+                throw new LogicException;
218
+            }
219
+
220
+            $this->model = $model;
221
+        }
222
+    }
223 223
 }
Please login to merge, or discard this patch.
src/Contract/Core/I18n.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 namespace Intraxia\Jaxion\Contract\Core;
3 3
 
4 4
 interface I18n {
5
-	/**
6
-	 * Loads the plugin's textdomain.
7
-	 *
8
-	 * @return void
9
-	 */
10
-	public function load_plugin_textdomain();
5
+    /**
6
+     * Loads the plugin's textdomain.
7
+     *
8
+     * @return void
9
+     */
10
+    public function load_plugin_textdomain();
11 11
 }
Please login to merge, or discard this patch.
src/Core/I18n.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 	 * @param $basename
32 32
 	 * @param $path
33 33
 	 */
34
-	public function __construct( $basename, $path ) {
34
+	public function __construct($basename, $path) {
35 35
 		$this->basename = $basename;
36 36
 		$this->path = $path;
37 37
 	}
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 		load_plugin_textdomain(
44 44
 			$this->basename,
45 45
 			false,
46
-			basename( $this->path ) . '/languages/'
46
+			basename($this->path).'/languages/'
47 47
 		);
48 48
 	}
49 49
 
Please login to merge, or discard this patch.
Indentation   +45 added lines, -45 removed lines patch added patch discarded remove patch
@@ -11,53 +11,53 @@
 block discarded – undo
11 11
  * @subpackage Core
12 12
  */
13 13
 class I18n implements I18nContract, HasActions {
14
-	/**
15
-	 * Plugin basename
16
-	 *
17
-	 * @var string
18
-	 */
19
-	private $basename;
14
+    /**
15
+     * Plugin basename
16
+     *
17
+     * @var string
18
+     */
19
+    private $basename;
20 20
 
21
-	/**
22
-	 * Plugin path.
23
-	 *
24
-	 * @var string
25
-	 */
26
-	private $path;
21
+    /**
22
+     * Plugin path.
23
+     *
24
+     * @var string
25
+     */
26
+    private $path;
27 27
 
28
-	/**
29
-	 * I18n constructor.
30
-	 *
31
-	 * @param string $basename Plugin basename.
32
-	 * @param string $path     Plugin path.
33
-	 */
34
-	public function __construct( $basename, $path ) {
35
-		$this->basename = $basename;
36
-		$this->path = $path;
37
-	}
28
+    /**
29
+     * I18n constructor.
30
+     *
31
+     * @param string $basename Plugin basename.
32
+     * @param string $path     Plugin path.
33
+     */
34
+    public function __construct( $basename, $path ) {
35
+        $this->basename = $basename;
36
+        $this->path = $path;
37
+    }
38 38
 
39
-	/**
40
-	 * {@inheritdoc}
41
-	 */
42
-	public function load_plugin_textdomain() {
43
-		load_plugin_textdomain(
44
-			$this->basename,
45
-			false,
46
-			basename( $this->path ) . '/languages/'
47
-		);
48
-	}
39
+    /**
40
+     * {@inheritdoc}
41
+     */
42
+    public function load_plugin_textdomain() {
43
+        load_plugin_textdomain(
44
+            $this->basename,
45
+            false,
46
+            basename( $this->path ) . '/languages/'
47
+        );
48
+    }
49 49
 
50
-	/**
51
-	 * {@inheritDoc}
52
-	 *
53
-	 * @return array
54
-	 */
55
-	public function action_hooks() {
56
-		return array(
57
-			array(
58
-				'hook'   => 'init',
59
-				'method' => 'load_plugin_textdomain',
60
-			),
61
-		);
62
-	}
50
+    /**
51
+     * {@inheritDoc}
52
+     *
53
+     * @return array
54
+     */
55
+    public function action_hooks() {
56
+        return array(
57
+            array(
58
+                'hook'   => 'init',
59
+                'method' => 'load_plugin_textdomain',
60
+            ),
61
+        );
62
+    }
63 63
 }
Please login to merge, or discard this patch.