Passed
Push — master ( 9604c7...90a7ba )
by
unknown
01:48
created
src/Routing/Conditions/PostId.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,21 +20,21 @@
 block discarded – undo
20 20
 	 * 
21 21
 	 * @param string $post_id
22 22
 	 */
23
-	public function __construct( $post_id ) {
23
+	public function __construct($post_id) {
24 24
 		$this->post_id = $post_id;
25 25
 	}
26 26
 
27 27
 	/**
28 28
 	 * {@inheritDoc}
29 29
 	 */
30
-	public function satisfied( Request $request ) {
30
+	public function satisfied(Request $request) {
31 31
 		return $this->post_id === get_the_ID();
32 32
 	}
33 33
 
34 34
 	/**
35 35
 	 * {@inheritDoc}
36 36
 	 */
37
-	public function getArguments( Request $request ) {
37
+	public function getArguments(Request $request) {
38 38
 		return [$this->post_id];
39 39
 	}
40 40
 }
Please login to merge, or discard this patch.
src/Routing/Conditions/PostType.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,21 +20,21 @@
 block discarded – undo
20 20
 	 * 
21 21
 	 * @param string $post_type
22 22
 	 */
23
-	public function __construct( $post_type ) {
23
+	public function __construct($post_type) {
24 24
 		$this->post_type = $post_type;
25 25
 	}
26 26
 
27 27
 	/**
28 28
 	 * {@inheritDoc}
29 29
 	 */
30
-	public function satisfied( Request $request ) {
30
+	public function satisfied(Request $request) {
31 31
 		return $this->post_type === get_post_type();
32 32
 	}
33 33
 
34 34
 	/**
35 35
 	 * {@inheritDoc}
36 36
 	 */
37
-	public function getArguments( Request $request ) {
37
+	public function getArguments(Request $request) {
38 38
 		return [$this->post_type];
39 39
 	}
40 40
 }
Please login to merge, or discard this patch.
src/Routing/Conditions/ConditionInterface.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 	 * @param  Request $request
15 15
 	 * @return boolean
16 16
 	 */
17
-	public function satisfied( Request $request );
17
+	public function satisfied(Request $request);
18 18
 
19 19
 	/**
20 20
 	 * Return an array of arguments for use in request
@@ -22,5 +22,5 @@  discard block
 block discarded – undo
22 22
 	 * @param  Request $request
23 23
 	 * @return array
24 24
 	 */
25
-	public function getArguments( Request $request );
25
+	public function getArguments(Request $request);
26 26
 }
Please login to merge, or discard this patch.
src/Routing/RouteInterface.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 	 * @param  Request $request
16 16
 	 * @return boolean
17 17
 	 */
18
-	public function satisfied( Request $request );
18
+	public function satisfied(Request $request);
19 19
 
20 20
 	/**
21 21
 	 * Return a response for the given request
@@ -23,5 +23,5 @@  discard block
 block discarded – undo
23 23
 	 * @param  Request                             $request
24 24
 	 * @return \Psr\Http\Message\ResponseInterface
25 25
 	 */
26
-	public function handle( Request $request );
26
+	public function handle(Request $request);
27 27
 }
Please login to merge, or discard this patch.
src/Routing/RouteGroup.php 1 patch
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -31,18 +31,18 @@  discard block
 block discarded – undo
31 31
 	 * @param string|ConditionInterface $target
32 32
 	 * @param Closure                   $callable
33 33
 	 */
34
-	public function __construct( $target, Closure $callable ) {
35
-		if ( is_string( $target ) ) {
36
-			$target = new UrlCondition( $target );
34
+	public function __construct($target, Closure $callable) {
35
+		if (is_string($target)) {
36
+			$target = new UrlCondition($target);
37 37
 		}
38 38
 
39
-		if ( ! is_a( $target, UrlCondition::class ) ) {
40
-			throw new Exception( 'Route groups can only use route strings.' );
39
+		if ( ! is_a($target, UrlCondition::class)) {
40
+			throw new Exception('Route groups can only use route strings.');
41 41
 		}
42 42
 
43 43
 		$this->target = $target;
44 44
 
45
-		$callable( $this );
45
+		$callable($this);
46 46
 	}
47 47
 
48 48
 	/**
@@ -50,10 +50,10 @@  discard block
 block discarded – undo
50 50
 	 * 
51 51
 	 * @return RouteInterface|null
52 52
 	 */
53
-	protected function getSatisfiedRoute( Request $request ) {
53
+	protected function getSatisfiedRoute(Request $request) {
54 54
 		$routes = $this->getRoutes();
55
-		foreach ( $routes as $route ) {
56
-			if ( $route->satisfied( $request ) ) {
55
+		foreach ($routes as $route) {
56
+			if ($route->satisfied($request)) {
57 57
 				return $route;
58 58
 			}
59 59
 		}
@@ -63,45 +63,45 @@  discard block
 block discarded – undo
63 63
 	/**
64 64
 	 * {@inheritDoc}
65 65
 	 */
66
-	public function satisfied( Request $request ) {
67
-		$route = $this->getSatisfiedRoute( $request );
66
+	public function satisfied(Request $request) {
67
+		$route = $this->getSatisfiedRoute($request);
68 68
 		return $route !== null;
69 69
 	}
70 70
 
71 71
 	/**
72 72
 	 * {@inheritDoc}
73 73
 	 */
74
-	public function handle( Request $request ) {
75
-		$route = $this->getSatisfiedRoute( $request );
76
-		return $route ? $route->handle( $request ) : null;
74
+	public function handle(Request $request) {
75
+		$route = $this->getSatisfiedRoute($request);
76
+		return $route ? $route->handle($request) : null;
77 77
 	}
78 78
 
79 79
 	/**
80 80
 	 * {@inheritDoc}
81 81
 	 */
82
-	public function route( $methods, $target, $handler ) {
83
-		if ( is_string( $target ) ) {
84
-			$target = new UrlCondition( $target );
82
+	public function route($methods, $target, $handler) {
83
+		if (is_string($target)) {
84
+			$target = new UrlCondition($target);
85 85
 		}
86 86
 
87
-		if ( ! is_a( $target, UrlCondition::class ) ) {
88
-			throw new Exception( 'Routes inside route groups can only use route strings.' );
87
+		if ( ! is_a($target, UrlCondition::class)) {
88
+			throw new Exception('Routes inside route groups can only use route strings.');
89 89
 		}
90 90
 
91
-		$target = $this->target->concatenate( $target );
92
-		return $this->traitRoute( $methods, $target, $handler );
91
+		$target = $this->target->concatenate($target);
92
+		return $this->traitRoute($methods, $target, $handler);
93 93
 	}
94 94
 
95 95
 	/**
96 96
 	 * {@inheritDoc}
97 97
 	 */
98
-	public function addMiddleware( $middleware ) {
98
+	public function addMiddleware($middleware) {
99 99
 		$routes = $this->getRoutes();
100 100
 
101
-		foreach ( $routes as $route ) {
102
-			$route->addMiddleware( $middleware );
101
+		foreach ($routes as $route) {
102
+			$route->addMiddleware($middleware);
103 103
 		}
104 104
 		
105
-		return $this->traitAddMiddleware( $middleware );
105
+		return $this->traitAddMiddleware($middleware);
106 106
 	}
107 107
 }
Please login to merge, or discard this patch.
src/template.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
  * Template used to override the loaded template file by WordPress when a route is handled
4 4
  */
5 5
 use CarbonFramework\Framework;
6
-$response = apply_filters( 'carbon_framework_response', null );
7
-if ( $response !== null ) {
8
-	Framework::respond( $response );
6
+$response = apply_filters('carbon_framework_response', null);
7
+if ($response !== null) {
8
+	Framework::respond($response);
9 9
 }
Please login to merge, or discard this patch.
src/ServiceProviders/Routing.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -11,13 +11,13 @@  discard block
 block discarded – undo
11 11
 	/**
12 12
 	 * {@inheritDoc}
13 13
 	 */
14
-	public function register( $container ) {
15
-		$container['framework.config'] = array_merge( [
14
+	public function register($container) {
15
+		$container['framework.config'] = array_merge([
16 16
 			'global_middleware' => [],
17
-		], $container['framework.config'] );
17
+		], $container['framework.config']);
18 18
 
19 19
 		$container['framework.routing.global_middleware'] = $container['framework.config']['global_middleware'];
20
-		$container['framework.routing.global_middleware'] = apply_filters( 'carbon_framework_global_middleware', $container['framework.routing.global_middleware'] );
20
+		$container['framework.routing.global_middleware'] = apply_filters('carbon_framework_global_middleware', $container['framework.routing.global_middleware']);
21 21
 
22 22
 		$container['framework.routing.conditions.custom'] = \CarbonFramework\Routing\Conditions\Custom::class;
23 23
 		$container['framework.routing.conditions.url'] = \CarbonFramework\Routing\Conditions\Url::class;
@@ -30,13 +30,13 @@  discard block
 block discarded – undo
30 30
 			return new \CarbonFramework\Routing\Router();
31 31
 		};
32 32
 
33
-		Framework::facade( 'Router', \CarbonFramework\Facades\Router::class );
33
+		Framework::facade('Router', \CarbonFramework\Facades\Router::class);
34 34
 	}
35 35
 
36 36
 	/**
37 37
 	 * {@inheritDoc}
38 38
 	 */
39
-	public function boot( $container ) {
39
+	public function boot($container) {
40 40
 		\Router::boot(); // facade
41 41
 	}
42 42
 }
43 43
\ No newline at end of file
Please login to merge, or discard this patch.
src/ServiceProviders/OldInput.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -12,22 +12,22 @@
 block discarded – undo
12 12
 	/**
13 13
 	 * {@inheritDoc}
14 14
 	 */
15
-	public function register( $container ) {
16
-		$container['framework.routing.global_middleware'] = array_merge( $container['framework.routing.global_middleware'], [
15
+	public function register($container) {
16
+		$container['framework.routing.global_middleware'] = array_merge($container['framework.routing.global_middleware'], [
17 17
 			OldInputMiddleware::class,
18
-		] );
18
+		]);
19 19
 
20 20
 		$container['framework.old_input.old_input'] = function() {
21 21
 			return new \CarbonFramework\Input\OldInput();
22 22
 		};
23 23
 
24
-		Framework::facade( 'OldInput', \CarbonFramework\Facades\OldInput::class );
24
+		Framework::facade('OldInput', \CarbonFramework\Facades\OldInput::class);
25 25
 	}
26 26
 
27 27
 	/**
28 28
 	 * {@inheritDoc}
29 29
 	 */
30
-	public function boot( $container ) {
30
+	public function boot($container) {
31 31
 		// nothing to boot
32 32
 	}
33 33
 }
34 34
\ No newline at end of file
Please login to merge, or discard this patch.
src/Framework.php 1 patch
Spacing   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 	 * @return boolean
39 39
 	 */
40 40
 	public static function debugging() {
41
-		return ( defined( 'WP_DEBUG' ) && WP_DEBUG );
41
+		return (defined('WP_DEBUG') && WP_DEBUG);
42 42
 	}
43 43
 
44 44
 	/**
@@ -57,8 +57,8 @@  discard block
 block discarded – undo
57 57
 	 * @return null
58 58
 	 */
59 59
 	protected static function verifyBoot() {
60
-		if ( ! static::isBooted() ) {
61
-			throw new Exception( get_called_class() . ' must be booted first.' );
60
+		if ( ! static::isBooted()) {
61
+			throw new Exception(get_called_class() . ' must be booted first.');
62 62
 		}
63 63
 	}
64 64
 
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 	 * @return Container
69 69
 	 */
70 70
 	public static function getContainer() {
71
-		if ( static::$container === null ) {
71
+		if (static::$container === null) {
72 72
 			static::$container = new Container();
73 73
 		}
74 74
 		return static::$container;
@@ -82,29 +82,29 @@  discard block
 block discarded – undo
82 82
 	 * @throws Exception
83 83
 	 * @return null
84 84
 	 */
85
-	public static function boot( $config = [] ) {
86
-		if ( static::isBooted() ) {
87
-			throw new Exception( get_called_class() . ' already booted.' );
85
+	public static function boot($config = []) {
86
+		if (static::isBooted()) {
87
+			throw new Exception(get_called_class() . ' already booted.');
88 88
 		}
89 89
 		static::$booted = true;
90 90
 
91 91
 		$container = static::getContainer();
92 92
 
93
-		$container['framework.config'] = array_merge( [
93
+		$container['framework.config'] = array_merge([
94 94
 			'providers' => [],
95
-		], $config );
95
+		], $config);
96 96
 
97
-		$container['framework.service_providers'] = array_merge( [
97
+		$container['framework.service_providers'] = array_merge([
98 98
 			RoutingServiceProvider::class,
99 99
 			FlashServiceProvider::class,
100 100
 			OldInputServiceProvider::class,
101 101
 			TemplatingServiceProvider::class,
102
-		], $container['framework.config']['providers'] );
102
+		], $container['framework.config']['providers']);
103 103
 
104
-		Facade::setFacadeApplication( $container );
104
+		Facade::setFacadeApplication($container);
105 105
 		AliasLoader::getInstance()->register();
106 106
 
107
-		static::loadServiceProviders( $container );
107
+		static::loadServiceProviders($container);
108 108
 	}
109 109
 
110 110
 	/**
@@ -113,15 +113,15 @@  discard block
 block discarded – undo
113 113
 	 * @param  Container $container
114 114
 	 * @return null
115 115
 	 */
116
-	protected static function loadServiceProviders( $container ) {
117
-		$container['framework.service_providers'] = apply_filters( 'carbon_framework_service_providers', $container['framework.service_providers'] );
116
+	protected static function loadServiceProviders($container) {
117
+		$container['framework.service_providers'] = apply_filters('carbon_framework_service_providers', $container['framework.service_providers']);
118 118
 
119
-		$service_providers = array_map( function( $service_provider ) {
119
+		$service_providers = array_map(function($service_provider) {
120 120
 			return new $service_provider();
121
-		}, $container['framework.service_providers'] );
121
+		}, $container['framework.service_providers']);
122 122
 
123
-		static::registerServiceProviders( $service_providers, $container );
124
-		static::bootServiceProviders( $service_providers, $container );
123
+		static::registerServiceProviders($service_providers, $container);
124
+		static::bootServiceProviders($service_providers, $container);
125 125
 	}
126 126
 
127 127
 	/**
@@ -130,9 +130,9 @@  discard block
 block discarded – undo
130 130
 	 * @param  Container $container
131 131
 	 * @return null
132 132
 	 */
133
-	protected static function registerServiceProviders( $service_providers, $container ) {
134
-		foreach ( $service_providers as $provider ) {
135
-			$provider->register( $container );
133
+	protected static function registerServiceProviders($service_providers, $container) {
134
+		foreach ($service_providers as $provider) {
135
+			$provider->register($container);
136 136
 		}
137 137
 	}
138 138
 
@@ -142,9 +142,9 @@  discard block
 block discarded – undo
142 142
 	 * @param  Container $container
143 143
 	 * @return null
144 144
 	 */
145
-	protected static function bootServiceProviders( $service_providers, $container ) {
146
-		foreach ( $service_providers as $provider ) {
147
-			$provider->boot( $container );
145
+	protected static function bootServiceProviders($service_providers, $container) {
146
+		foreach ($service_providers as $provider) {
147
+			$provider->boot($container);
148 148
 		}
149 149
 	}
150 150
 
@@ -155,8 +155,8 @@  discard block
 block discarded – undo
155 155
 	 * @param  string $facade_class
156 156
 	 * @return null
157 157
 	 */
158
-	public static function facade( $alias, $facade_class ) {
159
-		AliasLoader::getInstance()->alias( $alias, $facade_class );
158
+	public static function facade($alias, $facade_class) {
159
+		AliasLoader::getInstance()->alias($alias, $facade_class);
160 160
 	}
161 161
 
162 162
 	/**
@@ -165,14 +165,14 @@  discard block
 block discarded – undo
165 165
 	 * @param  string   $key
166 166
 	 * @return mixed|null
167 167
 	 */
168
-	public static function resolve( $key ) {
168
+	public static function resolve($key) {
169 169
 		static::verifyBoot();
170 170
 
171
-		if ( ! isset( static::getContainer()[ $key ] ) ) {
171
+		if ( ! isset(static::getContainer()[$key])) {
172 172
 			return null;
173 173
 		}
174 174
 
175
-		return static::getContainer()[ $key ];
175
+		return static::getContainer()[$key];
176 176
 	}
177 177
 
178 178
 	/**
@@ -181,12 +181,12 @@  discard block
 block discarded – undo
181 181
 	 * @param  string $class
182 182
 	 * @return object
183 183
 	 */
184
-	public static function instantiate( $class ) {
184
+	public static function instantiate($class) {
185 185
 		static::verifyBoot();
186 186
 
187
-		$instance = static::resolve( $class );
187
+		$instance = static::resolve($class);
188 188
 
189
-		if ( $instance === null ) {
189
+		if ($instance === null) {
190 190
 			$instance = new $class();
191 191
 		}
192 192
 
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
 	 * @param  ResponseInterface $response
201 201
 	 * @return null
202 202
 	 */
203
-	public static function respond( ResponseInterface $response ) {
204
-		Response::respond( $response );
203
+	public static function respond(ResponseInterface $response) {
204
+		Response::respond($response);
205 205
 	}
206 206
 }
Please login to merge, or discard this patch.