Passed
Branch master (60a40e)
by Alex
03:08
created
src/Collectors/ResourceCollectorTrait.php 1 patch
Indentation   +97 added lines, -97 removed lines patch added patch discarded remove patch
@@ -22,102 +22,102 @@
 block discarded – undo
22 22
 trait ResourceCollectorTrait
23 23
 {
24 24
 
25
-    abstract public function set($method, $pattern, $action);
26
-
27
-    /**
28
-     * A map of all routes of resources.
29
-     *
30
-     * @var array
31
-     */
32
-
33
-    protected $map = [
34
-        "index"  => ["get",    "/{name}"],
35
-        "make"   => ["get",    "/{name}/make"],
36
-        "create" => ["post",   "/{name}"],
37
-        "show"   => ["get",    "/{name}/{id:int+}"],
38
-        "edit"   => ["get",    "/{name}/{id:int+}/edit"],
39
-        "update" => ["put",    "/{name}/{id:int+}"],
40
-        "delete" => ["delete", "/{name}/{id:int+}"],
41
-    ];
42
-
43
-    /**
44
-     * Resource routing allows you to quickly declare all of the common routes for a given resourceful controller. 
45
-     * Instead of declaring separate routes for your index, show, new, edit, create, update and destroy actions, 
46
-     * a resourceful route declares them in a single line of code.
47
-     *
48
-     * @param string $controller The controller name.
49
-     * @param array  $options    Some options like, "as" to name the route pattern, "only" to
50
-     *                           explicit say that only this routes will be registered, and
51
-     *                           "except" that register all the routes except the indicates.
52
-     * @return Resource
53
-     */
54
-
55
-    public function resource($controller, array $options = array())
56
-    {
57
-        $name       = isset($options["prefix"]) ? $options["prefix"] : "";
58
-        $name      .= $this->getResourceName($controller, $options);
59
-        $actions    = $this->getResourceActions($options);
60
-        $resource = new Resource;
61
-
62
-        foreach ($actions as $action => $map) {
63
-            $resource->set($this->set($map[0], $this->getResourcePath($action, $map[1], $name, $options), [$controller, $action]));
64
-        }
65
-
66
-        return $resource;
67
-    }
68
-
69
-    /**
70
-     * Collect several resources at same time.
71
-     *
72
-     * @param array $controllers Several controller names as parameters or an array with all controller names.
73
-     * @return Resource
74
-     */
75
-
76
-    public function resources(array $controllers)
77
-    {
78
-        $resource = new Resource;
79
-        foreach ($controllers as $controller)
80
-            $resource->set($this->resource($controller));
81
-        return $resource;
82
-    }
83
-
84
-    /**
85
-     * @param string $controller
86
-     * @param array $options
87
-     *
88
-     * @return mixed
89
-     */
90
-
91
-    protected function getResourceName($controller, array $options)
92
-    {
93
-        return isset($options["as"]) ? $options["as"] : str_replace("controller", "", strtolower($controller));
94
-    }
95
-
96
-    /**
97
-     * @param  array $options
98
-     * @return array
99
-     */
100
-
101
-    protected function getResourceActions(array $options)
102
-    {
103
-        return isset($options["only"])   ? array_intersect_key($this->map, array_flip((array) $options["only"])) :
104
-              (isset($options["except"]) ? array_diff_key($this->map, array_flip((array) $options["except"]))    : $this->map);
105
-    }
106
-
107
-    /**
108
-     * @param string $action
109
-     * @param string $path
110
-     * @param string $name
111
-     * @param string[] $options
112
-     *
113
-     * @return string
114
-     */
115
-
116
-    protected function getResourcePath($action, $path, $name, array $options)
117
-    {
118
-        return str_replace("{name}", $name,
119
-            $action === "make" && isset($options["translate"]["make"]) ? str_replace("make", $options["translate"]["make"], $path) :
120
-           ($action === "edit" && isset($options["translate"]["edit"]) ? str_replace("edit", $options["translate"]["edit"], $path) : $path));
121
-    }
25
+	abstract public function set($method, $pattern, $action);
26
+
27
+	/**
28
+	 * A map of all routes of resources.
29
+	 *
30
+	 * @var array
31
+	 */
32
+
33
+	protected $map = [
34
+		"index"  => ["get",    "/{name}"],
35
+		"make"   => ["get",    "/{name}/make"],
36
+		"create" => ["post",   "/{name}"],
37
+		"show"   => ["get",    "/{name}/{id:int+}"],
38
+		"edit"   => ["get",    "/{name}/{id:int+}/edit"],
39
+		"update" => ["put",    "/{name}/{id:int+}"],
40
+		"delete" => ["delete", "/{name}/{id:int+}"],
41
+	];
42
+
43
+	/**
44
+	 * Resource routing allows you to quickly declare all of the common routes for a given resourceful controller. 
45
+	 * Instead of declaring separate routes for your index, show, new, edit, create, update and destroy actions, 
46
+	 * a resourceful route declares them in a single line of code.
47
+	 *
48
+	 * @param string $controller The controller name.
49
+	 * @param array  $options    Some options like, "as" to name the route pattern, "only" to
50
+	 *                           explicit say that only this routes will be registered, and
51
+	 *                           "except" that register all the routes except the indicates.
52
+	 * @return Resource
53
+	 */
54
+
55
+	public function resource($controller, array $options = array())
56
+	{
57
+		$name       = isset($options["prefix"]) ? $options["prefix"] : "";
58
+		$name      .= $this->getResourceName($controller, $options);
59
+		$actions    = $this->getResourceActions($options);
60
+		$resource = new Resource;
61
+
62
+		foreach ($actions as $action => $map) {
63
+			$resource->set($this->set($map[0], $this->getResourcePath($action, $map[1], $name, $options), [$controller, $action]));
64
+		}
65
+
66
+		return $resource;
67
+	}
68
+
69
+	/**
70
+	 * Collect several resources at same time.
71
+	 *
72
+	 * @param array $controllers Several controller names as parameters or an array with all controller names.
73
+	 * @return Resource
74
+	 */
75
+
76
+	public function resources(array $controllers)
77
+	{
78
+		$resource = new Resource;
79
+		foreach ($controllers as $controller)
80
+			$resource->set($this->resource($controller));
81
+		return $resource;
82
+	}
83
+
84
+	/**
85
+	 * @param string $controller
86
+	 * @param array $options
87
+	 *
88
+	 * @return mixed
89
+	 */
90
+
91
+	protected function getResourceName($controller, array $options)
92
+	{
93
+		return isset($options["as"]) ? $options["as"] : str_replace("controller", "", strtolower($controller));
94
+	}
95
+
96
+	/**
97
+	 * @param  array $options
98
+	 * @return array
99
+	 */
100
+
101
+	protected function getResourceActions(array $options)
102
+	{
103
+		return isset($options["only"])   ? array_intersect_key($this->map, array_flip((array) $options["only"])) :
104
+			  (isset($options["except"]) ? array_diff_key($this->map, array_flip((array) $options["except"]))    : $this->map);
105
+	}
106
+
107
+	/**
108
+	 * @param string $action
109
+	 * @param string $path
110
+	 * @param string $name
111
+	 * @param string[] $options
112
+	 *
113
+	 * @return string
114
+	 */
115
+
116
+	protected function getResourcePath($action, $path, $name, array $options)
117
+	{
118
+		return str_replace("{name}", $name,
119
+			$action === "make" && isset($options["translate"]["make"]) ? str_replace("make", $options["translate"]["make"], $path) :
120
+		   ($action === "edit" && isset($options["translate"]["edit"]) ? str_replace("edit", $options["translate"]["edit"], $path) : $path));
121
+	}
122 122
 
123 123
 }
Please login to merge, or discard this patch.
src/Strategies/EnhancerAbstractStrategy.php 1 patch
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -24,37 +24,37 @@
 block discarded – undo
24 24
 abstract class EnhancerAbstractStrategy implements StrategyInterface
25 25
 {
26 26
 
27
-    /**
28
-     * Key used to store the real route strategy on metadata.
29
-     *
30
-     * @var string
31
-     */
32
-
33
-    protected $metadataStrategyKey = "strategy";
34
-
35
-    /**
36
-     * @inheritdoc
37
-     * @throws BadRouteException
38
-     */
39
-
40
-    public function call(Route $route)
41
-    {
42
-        if ($route->hasMetadata($this->metadataStrategyKey)) {
43
-               $route->setStrategy($route->getMetadata($this->metadataStrategyKey));
44
-        } else $route->setStrategy(null);
45
-
46
-        $this->enhance($route);
47
-
48
-        return $route->call();
49
-    }
50
-
51
-    /**
52
-     * Manipulate route object before the dispatch.
53
-     *
54
-     * @param Route $route
55
-     * @return mixed
56
-     */
57
-
58
-    abstract public function enhance(Route $route);
27
+	/**
28
+	 * Key used to store the real route strategy on metadata.
29
+	 *
30
+	 * @var string
31
+	 */
32
+
33
+	protected $metadataStrategyKey = "strategy";
34
+
35
+	/**
36
+	 * @inheritdoc
37
+	 * @throws BadRouteException
38
+	 */
39
+
40
+	public function call(Route $route)
41
+	{
42
+		if ($route->hasMetadata($this->metadataStrategyKey)) {
43
+			   $route->setStrategy($route->getMetadata($this->metadataStrategyKey));
44
+		} else $route->setStrategy(null);
45
+
46
+		$this->enhance($route);
47
+
48
+		return $route->call();
49
+	}
50
+
51
+	/**
52
+	 * Manipulate route object before the dispatch.
53
+	 *
54
+	 * @param Route $route
55
+	 * @return mixed
56
+	 */
57
+
58
+	abstract public function enhance(Route $route);
59 59
 
60 60
 }
Please login to merge, or discard this patch.
src/Strategies/MatcherAwareInterface.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -20,16 +20,16 @@
 block discarded – undo
20 20
 interface MatcherAwareInterface
21 21
 {
22 22
 
23
-    /**
24
-     * @param \Codeburner\Router\Matcher $matcher
25
-     */
23
+	/**
24
+	 * @param \Codeburner\Router\Matcher $matcher
25
+	 */
26 26
 
27
-    public function setMatcher(\Codeburner\Router\Matcher $matcher);
27
+	public function setMatcher(\Codeburner\Router\Matcher $matcher);
28 28
 
29
-    /**
30
-     * @return \Codeburner\Router\Matcher
31
-     */
29
+	/**
30
+	 * @return \Codeburner\Router\Matcher
31
+	 */
32 32
 
33
-    public function getMatcher();
33
+	public function getMatcher();
34 34
 
35 35
 }
36 36
\ No newline at end of file
Please login to merge, or discard this patch.
src/Strategies/StrategyInterface.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -19,13 +19,13 @@
 block discarded – undo
19 19
 interface StrategyInterface
20 20
 {
21 21
 
22
-    /**
23
-     * Dispatch the matched route action.
24
-     *
25
-     * @param \Codeburner\Router\Route $route
26
-     * @return mixed The response of request.
27
-     */
22
+	/**
23
+	 * Dispatch the matched route action.
24
+	 *
25
+	 * @param \Codeburner\Router\Route $route
26
+	 * @return mixed The response of request.
27
+	 */
28 28
 
29
-    public function call(\Codeburner\Router\Route $route);
29
+	public function call(\Codeburner\Router\Route $route);
30 30
 
31 31
 }
Please login to merge, or discard this patch.
src/Collectors/ControllerCollectorTrait.php 1 patch
Indentation   +217 added lines, -217 removed lines patch added patch discarded remove patch
@@ -26,223 +26,223 @@
 block discarded – undo
26 26
 trait ControllerCollectorTrait
27 27
 {
28 28
 
29
-    abstract public function getWildcards();
30
-    abstract public function set($method, $pattern, $action);
31
-
32
-    /**
33
-     * Define how controller actions names will be joined to form the route pattern.
34
-     *
35
-     * @var string
36
-     */
37
-
38
-    protected $controllerActionJoin = "/";
39
-
40
-    /**
41
-     * Maps all the controller methods that begins with a HTTP method, and maps the rest of
42
-     * name as a path. The path will be the method name with slashes before every camelcased 
43
-     * word and without the HTTP method prefix, and the controller name will be used to prefix
44
-     * the route pattern. e.g. ArticlesController::getCreate will generate a route to: GET articles/create
45
-     *
46
-     * @param string $controller The controller name
47
-     * @param string $prefix
48
-     *
49
-     * @throws \ReflectionException
50
-     * @return Group
51
-     */
52
-
53
-    public function controller($controller, $prefix = null)
54
-    {
55
-        $controller = new ReflectionClass($controller);
56
-        $prefix     = $prefix === null ? $this->getControllerPrefix($controller) : $prefix;
57
-        $methods    = $controller->getMethods(ReflectionMethod::IS_PUBLIC);
58
-        return $this->collectControllerRoutes($controller, $methods, "/$prefix/");
59
-    }
60
-
61
-    /**
62
-     * Maps several controllers at same time.
63
-     *
64
-     * @param string[] $controllers Controllers name.
65
-     * @throws \ReflectionException
66
-     * @return Group
67
-     */
68
-
69
-    public function controllers(array $controllers)
70
-    {
71
-        $group = new Group;
72
-        foreach ($controllers as $controller)
73
-            $group->set($this->controller($controller));
74
-        return $group;
75
-    }
76
-
77
-    /**
78
-     * Alias for Collector::controller but maps a controller without using the controller name as prefix.
79
-     *
80
-     * @param string $controller The controller name
81
-     * @throws \ReflectionException
82
-     * @return Group
83
-     */
84
-
85
-    public function controllerWithoutPrefix($controller)
86
-    {
87
-        $controller = new ReflectionClass($controller);
88
-        $methods = $controller->getMethods(ReflectionMethod::IS_PUBLIC);
89
-        return $this->collectControllerRoutes($controller, $methods, "/");
90
-    }
91
-
92
-    /**
93
-     * Alias for Collector::controllers but maps a controller without using the controller name as prefix.
94
-     *
95
-     * @param string[] $controllers
96
-     * @throws \ReflectionException
97
-     * @return Group
98
-     */
99
-
100
-    public function controllersWithoutPrefix(array $controllers)
101
-    {
102
-        $group = new Group;
103
-        foreach ($controllers as $controller)
104
-            $group->set($this->controllerWithoutPrefix($controller));
105
-        return $group;
106
-    }
107
-
108
-    /**
109
-     * @param ReflectionClass $controller
110
-     * @param ReflectionMethod[] $methods
111
-     * @param string $prefix
112
-     *
113
-     * @return Group
114
-     */
115
-
116
-    protected function collectControllerRoutes(ReflectionClass $controller, array $methods, $prefix)
117
-    {
118
-        $group = new Group;
119
-        $controllerDefaultStrategy = $this->getAnnotatedStrategy($controller);
120
-
121
-        foreach ($methods as $method) {
122
-            $name = preg_split("~(?=[A-Z])~", $method->name);
123
-            $http = $name[0];
124
-            unset($name[0]);
29
+	abstract public function getWildcards();
30
+	abstract public function set($method, $pattern, $action);
31
+
32
+	/**
33
+	 * Define how controller actions names will be joined to form the route pattern.
34
+	 *
35
+	 * @var string
36
+	 */
37
+
38
+	protected $controllerActionJoin = "/";
39
+
40
+	/**
41
+	 * Maps all the controller methods that begins with a HTTP method, and maps the rest of
42
+	 * name as a path. The path will be the method name with slashes before every camelcased 
43
+	 * word and without the HTTP method prefix, and the controller name will be used to prefix
44
+	 * the route pattern. e.g. ArticlesController::getCreate will generate a route to: GET articles/create
45
+	 *
46
+	 * @param string $controller The controller name
47
+	 * @param string $prefix
48
+	 *
49
+	 * @throws \ReflectionException
50
+	 * @return Group
51
+	 */
52
+
53
+	public function controller($controller, $prefix = null)
54
+	{
55
+		$controller = new ReflectionClass($controller);
56
+		$prefix     = $prefix === null ? $this->getControllerPrefix($controller) : $prefix;
57
+		$methods    = $controller->getMethods(ReflectionMethod::IS_PUBLIC);
58
+		return $this->collectControllerRoutes($controller, $methods, "/$prefix/");
59
+	}
60
+
61
+	/**
62
+	 * Maps several controllers at same time.
63
+	 *
64
+	 * @param string[] $controllers Controllers name.
65
+	 * @throws \ReflectionException
66
+	 * @return Group
67
+	 */
68
+
69
+	public function controllers(array $controllers)
70
+	{
71
+		$group = new Group;
72
+		foreach ($controllers as $controller)
73
+			$group->set($this->controller($controller));
74
+		return $group;
75
+	}
76
+
77
+	/**
78
+	 * Alias for Collector::controller but maps a controller without using the controller name as prefix.
79
+	 *
80
+	 * @param string $controller The controller name
81
+	 * @throws \ReflectionException
82
+	 * @return Group
83
+	 */
84
+
85
+	public function controllerWithoutPrefix($controller)
86
+	{
87
+		$controller = new ReflectionClass($controller);
88
+		$methods = $controller->getMethods(ReflectionMethod::IS_PUBLIC);
89
+		return $this->collectControllerRoutes($controller, $methods, "/");
90
+	}
91
+
92
+	/**
93
+	 * Alias for Collector::controllers but maps a controller without using the controller name as prefix.
94
+	 *
95
+	 * @param string[] $controllers
96
+	 * @throws \ReflectionException
97
+	 * @return Group
98
+	 */
99
+
100
+	public function controllersWithoutPrefix(array $controllers)
101
+	{
102
+		$group = new Group;
103
+		foreach ($controllers as $controller)
104
+			$group->set($this->controllerWithoutPrefix($controller));
105
+		return $group;
106
+	}
107
+
108
+	/**
109
+	 * @param ReflectionClass $controller
110
+	 * @param ReflectionMethod[] $methods
111
+	 * @param string $prefix
112
+	 *
113
+	 * @return Group
114
+	 */
115
+
116
+	protected function collectControllerRoutes(ReflectionClass $controller, array $methods, $prefix)
117
+	{
118
+		$group = new Group;
119
+		$controllerDefaultStrategy = $this->getAnnotatedStrategy($controller);
120
+
121
+		foreach ($methods as $method) {
122
+			$name = preg_split("~(?=[A-Z])~", $method->name);
123
+			$http = $name[0];
124
+			unset($name[0]);
125 125
  
126
-            if (strpos(Collector::HTTP_METHODS, $http) !== false) {
127
-                $action   = $prefix . strtolower(implode($this->controllerActionJoin, $name));
128
-                $dynamic  = $this->getMethodConstraints($method);
129
-                $strategy = $this->getAnnotatedStrategy($method);
130
-
131
-                /** @var \Codeburner\Router\Route $route */
132
-                $route = $this->set($http, "$action$dynamic", [$controller->name, $method->name]);
133
-
134
-                if ($strategy !== null) {
135
-                       $route->setStrategy($strategy);
136
-                } else $route->setStrategy($controllerDefaultStrategy);
137
-
138
-                $group->set($route);
139
-            }
140
-        }
141
-
142
-        return $group;
143
-    }
144
-
145
-    /**
146
-     * @param ReflectionClass $controller
147
-     *
148
-     * @return string
149
-     */
150
-
151
-    protected function getControllerPrefix(ReflectionClass $controller)
152
-    {
153
-        preg_match("~\@prefix\s([a-zA-Z\\\_]+)~i", (string) $controller->getDocComment(), $prefix);
154
-        return isset($prefix[1]) ? $prefix[1] : str_replace("controller", "", strtolower($controller->getShortName()));
155
-    }
156
-
157
-    /**
158
-     * @param \ReflectionMethod
159
-     * @return string
160
-     */
161
-
162
-    protected function getMethodConstraints(ReflectionMethod $method)
163
-    {
164
-        $beginPath = "";
165
-        $endPath = "";
166
-
167
-        if ($parameters = $method->getParameters()) {
168
-            $types = $this->getParamsConstraint($method);
169
-
170
-            foreach ($parameters as $parameter) {
171
-                if ($parameter->isOptional()) {
172
-                    $beginPath .= "[";
173
-                    $endPath .= "]";
174
-                }
175
-
176
-                $beginPath .= $this->getPathConstraint($parameter, $types);
177
-            }
178
-        }
179
-
180
-        return $beginPath . $endPath;
181
-    }
182
-
183
-    /**
184
-     * @param ReflectionParameter $parameter
185
-     * @param string[] $types
186
-     * @return string
187
-     */
188
-
189
-    protected function getPathConstraint(ReflectionParameter $parameter, $types)
190
-    {
191
-        $name = $parameter->name;
192
-        $path = "/{" . $name;
193
-        return isset($types[$name]) ? "$path:{$types[$name]}}" : "$path}";
194
-    }
195
-
196
-    /**
197
-     * @param ReflectionMethod $method
198
-     * @return string[]
199
-     */
200
-
201
-    protected function getParamsConstraint(ReflectionMethod $method)
202
-    {
203
-        $params = [];
204
-        preg_match_all("~\@param\s(" . implode("|", array_keys($this->getWildcards())) . "|\(.+\))\s\\$([a-zA-Z0-1_]+)~i",
205
-            $method->getDocComment(), $types, PREG_SET_ORDER);
206
-
207
-        foreach ((array) $types as $type) {
208
-            // if a pattern is defined on Match take it otherwise take the param type by PHPDoc.
209
-            $params[$type[2]] = isset($type[4]) ? $type[4] : $type[1];
210
-        }
211
-
212
-        return $params;
213
-    }
214
-
215
-    /**
216
-     * @param ReflectionClass|ReflectionMethod $reflector
217
-     * @return string|null
218
-     */
219
-
220
-    protected function getAnnotatedStrategy($reflector)
221
-    {
222
-        preg_match("~\@strategy\s([a-zA-Z\\\_]+)~i", (string) $reflector->getDocComment(), $strategy);
223
-        return isset($strategy[1]) ? $strategy[1] : null;
224
-    }
225
-
226
-    /**
227
-     * Define how controller actions names will be joined to form the route pattern.
228
-     * Defaults to "/" so actions like "getMyAction" will be "/my/action". If changed to
229
-     * "-" the new pattern will be "/my-action".
230
-     *
231
-     * @param string $join
232
-     */
233
-
234
-    public function setControllerActionJoin($join)
235
-    {
236
-        $this->controllerActionJoin = $join;
237
-    }
238
-
239
-    /**
240
-     * @return string
241
-     */
242
-
243
-    public function getControllerActionJoin()
244
-    {
245
-        return $this->controllerActionJoin;
246
-    }
126
+			if (strpos(Collector::HTTP_METHODS, $http) !== false) {
127
+				$action   = $prefix . strtolower(implode($this->controllerActionJoin, $name));
128
+				$dynamic  = $this->getMethodConstraints($method);
129
+				$strategy = $this->getAnnotatedStrategy($method);
130
+
131
+				/** @var \Codeburner\Router\Route $route */
132
+				$route = $this->set($http, "$action$dynamic", [$controller->name, $method->name]);
133
+
134
+				if ($strategy !== null) {
135
+					   $route->setStrategy($strategy);
136
+				} else $route->setStrategy($controllerDefaultStrategy);
137
+
138
+				$group->set($route);
139
+			}
140
+		}
141
+
142
+		return $group;
143
+	}
144
+
145
+	/**
146
+	 * @param ReflectionClass $controller
147
+	 *
148
+	 * @return string
149
+	 */
150
+
151
+	protected function getControllerPrefix(ReflectionClass $controller)
152
+	{
153
+		preg_match("~\@prefix\s([a-zA-Z\\\_]+)~i", (string) $controller->getDocComment(), $prefix);
154
+		return isset($prefix[1]) ? $prefix[1] : str_replace("controller", "", strtolower($controller->getShortName()));
155
+	}
156
+
157
+	/**
158
+	 * @param \ReflectionMethod
159
+	 * @return string
160
+	 */
161
+
162
+	protected function getMethodConstraints(ReflectionMethod $method)
163
+	{
164
+		$beginPath = "";
165
+		$endPath = "";
166
+
167
+		if ($parameters = $method->getParameters()) {
168
+			$types = $this->getParamsConstraint($method);
169
+
170
+			foreach ($parameters as $parameter) {
171
+				if ($parameter->isOptional()) {
172
+					$beginPath .= "[";
173
+					$endPath .= "]";
174
+				}
175
+
176
+				$beginPath .= $this->getPathConstraint($parameter, $types);
177
+			}
178
+		}
179
+
180
+		return $beginPath . $endPath;
181
+	}
182
+
183
+	/**
184
+	 * @param ReflectionParameter $parameter
185
+	 * @param string[] $types
186
+	 * @return string
187
+	 */
188
+
189
+	protected function getPathConstraint(ReflectionParameter $parameter, $types)
190
+	{
191
+		$name = $parameter->name;
192
+		$path = "/{" . $name;
193
+		return isset($types[$name]) ? "$path:{$types[$name]}}" : "$path}";
194
+	}
195
+
196
+	/**
197
+	 * @param ReflectionMethod $method
198
+	 * @return string[]
199
+	 */
200
+
201
+	protected function getParamsConstraint(ReflectionMethod $method)
202
+	{
203
+		$params = [];
204
+		preg_match_all("~\@param\s(" . implode("|", array_keys($this->getWildcards())) . "|\(.+\))\s\\$([a-zA-Z0-1_]+)~i",
205
+			$method->getDocComment(), $types, PREG_SET_ORDER);
206
+
207
+		foreach ((array) $types as $type) {
208
+			// if a pattern is defined on Match take it otherwise take the param type by PHPDoc.
209
+			$params[$type[2]] = isset($type[4]) ? $type[4] : $type[1];
210
+		}
211
+
212
+		return $params;
213
+	}
214
+
215
+	/**
216
+	 * @param ReflectionClass|ReflectionMethod $reflector
217
+	 * @return string|null
218
+	 */
219
+
220
+	protected function getAnnotatedStrategy($reflector)
221
+	{
222
+		preg_match("~\@strategy\s([a-zA-Z\\\_]+)~i", (string) $reflector->getDocComment(), $strategy);
223
+		return isset($strategy[1]) ? $strategy[1] : null;
224
+	}
225
+
226
+	/**
227
+	 * Define how controller actions names will be joined to form the route pattern.
228
+	 * Defaults to "/" so actions like "getMyAction" will be "/my/action". If changed to
229
+	 * "-" the new pattern will be "/my-action".
230
+	 *
231
+	 * @param string $join
232
+	 */
233
+
234
+	public function setControllerActionJoin($join)
235
+	{
236
+		$this->controllerActionJoin = $join;
237
+	}
238
+
239
+	/**
240
+	 * @return string
241
+	 */
242
+
243
+	public function getControllerActionJoin()
244
+	{
245
+		return $this->controllerActionJoin;
246
+	}
247 247
 
248 248
 }
Please login to merge, or discard this patch.
src/Collector.php 1 patch
Indentation   +336 added lines, -336 removed lines patch added patch discarded remove patch
@@ -33,341 +33,341 @@
 block discarded – undo
33 33
 class Collector
34 34
 {
35 35
 
36
-    use Collectors\ControllerCollectorTrait;
37
-    use Collectors\ResourceCollectorTrait;
38
-
39
-    /**
40
-     * These regex define the structure of a dynamic segment in a pattern.
41
-     *
42
-     * @var string
43
-     */
44
-
45
-    const DYNAMIC_REGEX = "{\s*(\w*)\s*(?::\s*([^{}]*(?:{(?-1)}*)*))?\s*}";
46
-
47
-
48
-    /**
49
-     * All the supported http methods separated by spaces.
50
-     *
51
-     * @var string
52
-     */
53
-
54
-    const HTTP_METHODS = "get post put patch delete";
55
-
56
-    /**
57
-     * The static routes are simple stored in a multidimensional array, the first
58
-     * dimension is indexed by an http method and hold an array indexed with the patterns
59
-     * and holding the route. ex. [METHOD => [PATTERN => ROUTE]]
60
-     *
61
-     * @var array
62
-     */
63
-
64
-    protected $statics  = [];
65
-
66
-    /**
67
-     * The dynamic routes have parameters and are stored in a hashtable that every cell have
68
-     * an array with route patterns as indexes and routes as values. ex. [INDEX => [PATTERN => ROUTE]]
69
-     *
70
-     * @var array
71
-     */
72
-
73
-    protected $dynamics = [];
74
-
75
-    /**
76
-     * Some regex wildcards for easily definition of dynamic routes. ps. all keys and values must start with :
77
-     *
78
-     * @var array
79
-     */
80
-
81
-    protected $wildcards = [
82
-        ":uid"     => ":uid-[a-zA-Z0-9]",
83
-        ":slug"    => ":[a-z0-9-]",
84
-        ":string"  => ":\w",
85
-        ":int"     => ":\d",
86
-        ":integer" => ":\d",
87
-        ":float"   => ":[-+]?\d*?[.]?\d",
88
-        ":double"  => ":[-+]?\d*?[.]?\d",
89
-        ":hex"     => ":0[xX][0-9a-fA-F]",
90
-        ":octal"   => ":0[1-7][0-7]",
91
-        ":bool"    => ":1|0|true|false|yes|no",
92
-        ":boolean" => ":1|0|true|false|yes|no",
93
-    ];
94
-
95
-    /**
96
-     * @param string $method
97
-     * @param string $pattern
98
-     * @param callable $action
99
-     *
100
-     * @throws BadRouteException 
101
-     * @throws MethodNotSupportedException
102
-     *
103
-     * @return Group
104
-     */
105
-
106
-    public function set($method, $pattern, $action)
107
-    {
108
-        $method   = $this->parseMethod($method);
109
-        $patterns = $this->parsePattern($pattern);
110
-        $group    = new Group;
111
-
112
-        foreach ($patterns as $pattern)
113
-        {
114
-            $route = new Route($this, $method, $pattern, $action);
115
-            $group->setRoute($route);
116
-
117
-            if (strpos($pattern, "{") !== false) {
118
-                   $index = $this->getDynamicIndex($method, $pattern);
119
-                   $this->dynamics[$index][$pattern] = $route;
120
-            } else $this->statics[$method][$pattern] = $route;
121
-        }
122
-
123
-        return $group;
124
-    }
125
-
126
-    public function get   ($pattern, $action) { return $this->set("get"   , $pattern, $action); }
127
-    public function post  ($pattern, $action) { return $this->set("post"  , $pattern, $action); }
128
-    public function put   ($pattern, $action) { return $this->set("put"   , $pattern, $action); }
129
-    public function patch ($pattern, $action) { return $this->set("patch" , $pattern, $action); }
130
-    public function delete($pattern, $action) { return $this->set("delete", $pattern, $action); }
131
-
132
-    /**
133
-     * Insert a route into several http methods.
134
-     *
135
-     * @param string[] $methods
136
-     * @param string $pattern
137
-     * @param callable $action
138
-     *
139
-     * @return Group
140
-     */
141
-
142
-    public function match(array $methods, $pattern, $action)
143
-    {
144
-        $group = new Group;
145
-        foreach ($methods as $method)
146
-            $group->set($this->set($method, $pattern, $action));
147
-        return $group;
148
-    }
149
-
150
-    /**
151
-     * Insert a route into every http method supported.
152
-     *
153
-     * @param string $pattern
154
-     * @param callable $action
155
-     *
156
-     * @return Group
157
-     */
158
-
159
-    public function any($pattern, $action)
160
-    {
161
-        return $this->match(explode(" ", self::HTTP_METHODS), $pattern, $action);
162
-    }
163
-
164
-    /**
165
-     * Insert a route into every http method supported but the given ones.
166
-     *
167
-     * @param string $methods
168
-     * @param string $pattern
169
-     * @param callable $action
170
-     *
171
-     * @return Group
172
-     */
173
-
174
-    public function except($methods, $pattern, $action)
175
-    {
176
-        return $this->match(array_diff(explode(" ", self::HTTP_METHODS), (array) $methods), $pattern, $action);
177
-    }
178
-
179
-    /**
180
-     * Group all given routes.
181
-     *
182
-     * @param Route[] $routes
183
-     * @return Group
184
-     */
185
-
186
-    public function group(array $routes)
187
-    {
188
-        $group = new Group;
189
-        foreach ($routes as $route)
190
-            $group->set($route);
191
-        return $group;
192
-    }
193
-
194
-    /**
195
-     * Remove a route from collector.
196
-     *
197
-     * @param string $method
198
-     * @param string $pattern
199
-     */
200
-
201
-    public function forget($method, $pattern)
202
-    {
203
-        if (strpos($pattern, "{") === false) {
204
-               unset($this->statics[$method][$pattern]);
205
-        } else unset($this->dynamics[$this->getDynamicIndex($method, $pattern)][$pattern]);
206
-    }
207
-
208
-    /**
209
-     * Determine if the http method is valid.
210
-     *
211
-     * @param string $method
212
-     * @throws MethodNotSupportedException
213
-     * @return string
214
-     */
215
-
216
-    protected function parseMethod($method)
217
-    {
218
-        $method = strtolower($method);
219
-
220
-        if (strpos(self::HTTP_METHODS, $method) === false) {
221
-            throw new MethodNotSupportedException($method);
222
-        }
223
-
224
-        return $method;
225
-    }
226
-
227
-    /**
228
-     * Separate routes pattern with optional parts into n new patterns.
229
-     *
230
-     * @param string $pattern
231
-     * @return array
232
-     */
233
-
234
-    protected function parsePattern($pattern)
235
-    {
236
-        $withoutClosing = rtrim($pattern, "]");
237
-        $closingNumber  = strlen($pattern) - strlen($withoutClosing);
238
-
239
-        $segments = preg_split("~" . self::DYNAMIC_REGEX . "(*SKIP)(*F)|\[~x", $withoutClosing);
240
-        $this->parseSegments($segments, $closingNumber, $withoutClosing);
241
-
242
-        return $this->buildSegments($segments);
243
-    }
244
-
245
-    /**
246
-     * Parse all the possible patterns seeking for an incorrect or incompatible pattern.
247
-     *
248
-     * @param string[] $segments       Segments are all the possible patterns made on top of a pattern with optional segments.
249
-     * @param int      $closingNumber  The count of optional segments.
250
-     * @param string   $withoutClosing The pattern without the closing token of an optional segment. aka: ]
251
-     *
252
-     * @throws BadRouteException
253
-     */
254
-
255
-    protected function parseSegments(array $segments, $closingNumber, $withoutClosing)
256
-    {
257
-        if ($closingNumber !== count($segments) - 1) {
258
-            if (preg_match("~" . self::DYNAMIC_REGEX . "(*SKIP)(*F)|\]~x", $withoutClosing)) {
259
-                   throw new BadRouteException(BadRouteException::OPTIONAL_SEGMENTS_ON_MIDDLE);
260
-            } else throw new BadRouteException(BadRouteException::UNCLOSED_OPTIONAL_SEGMENTS);
261
-        }
262
-    }
263
-
264
-    /**
265
-     * @param string[] $segments
266
-     *
267
-     * @throws BadRouteException
268
-     * @return array
269
-     */
270
-
271
-    protected function buildSegments(array $segments)
272
-    {
273
-        $pattern  = "";
274
-        $patterns = [];
275
-        $wildcardTokens = array_keys($this->wildcards);
276
-        $wildcardRegex  = $this->wildcards;
277
-
278
-        foreach ($segments as $n => $segment) {
279
-            if ($segment === "" && $n !== 0) {
280
-                throw new BadRouteException(BadRouteException::EMPTY_OPTIONAL_PARTS);
281
-            }
282
-
283
-            $patterns[] = $pattern .= str_replace($wildcardTokens, $wildcardRegex, $segment);
284
-        }
285
-
286
-        return $patterns;
287
-    }
288
-
289
-    /**
290
-     * @param string $method
291
-     * @param string $pattern
292
-     *
293
-     * @return Route|false
294
-     */
295
-
296
-    public function findStaticRoute($method, $pattern)
297
-    {
298
-        $method = strtolower($method);
299
-        if (isset($this->statics[$method]) && isset($this->statics[$method][$pattern]))
300
-            return $this->statics[$method][$pattern];
301
-        return false;
302
-    }
303
-
304
-    /**
305
-     * @param string $method
306
-     * @param string $pattern
307
-     *
308
-     * @return array|false
309
-     */
310
-
311
-    public function findDynamicRoutes($method, $pattern)
312
-    {
313
-        $index = $this->getDynamicIndex($method, $pattern);
314
-        return isset($this->dynamics[$index]) ? $this->dynamics[$index] : false;
315
-    }
316
-
317
-    /**
318
-     * @param string $method
319
-     * @param string $pattern
320
-     *
321
-     * @return int
322
-     */
323
-
324
-    protected function getDynamicIndex($method, $pattern)
325
-    {
326
-        return crc32(strtolower($method)) + substr_count($pattern, "/");
327
-    }
328
-
329
-    /**
330
-     * @return string[]
331
-     */
332
-
333
-    public function getWildcards()
334
-    {
335
-        $wildcards = [];
336
-        foreach ($this->wildcards as $token => $regex)
337
-            $wildcards[substr($token, 1)] = substr($regex, 1);
338
-        return $wildcards;
339
-    }
340
-
341
-    /**
342
-     * @return string[]
343
-     */
344
-
345
-    public function getWildcardTokens()
346
-    {
347
-        return $this->wildcards;
348
-    }
349
-
350
-    /**
351
-     * @param string $wildcard
352
-     * @return string|null
353
-     */
354
-
355
-    public function getWildcard($wildcard)
356
-    {
357
-        return isset($this->wildcards[":$wildcard"]) ? substr($this->wildcards[":$wildcard"], 1) : null;
358
-    }
359
-
360
-    /**
361
-     * @param string $wildcard
362
-     * @param string $pattern
363
-     *
364
-     * @return self
365
-     */
366
-
367
-    public function setWildcard($wildcard, $pattern)
368
-    {
369
-        $this->wildcards[":$wildcard"] = ":$pattern";
370
-        return $this;
371
-    }
36
+	use Collectors\ControllerCollectorTrait;
37
+	use Collectors\ResourceCollectorTrait;
38
+
39
+	/**
40
+	 * These regex define the structure of a dynamic segment in a pattern.
41
+	 *
42
+	 * @var string
43
+	 */
44
+
45
+	const DYNAMIC_REGEX = "{\s*(\w*)\s*(?::\s*([^{}]*(?:{(?-1)}*)*))?\s*}";
46
+
47
+
48
+	/**
49
+	 * All the supported http methods separated by spaces.
50
+	 *
51
+	 * @var string
52
+	 */
53
+
54
+	const HTTP_METHODS = "get post put patch delete";
55
+
56
+	/**
57
+	 * The static routes are simple stored in a multidimensional array, the first
58
+	 * dimension is indexed by an http method and hold an array indexed with the patterns
59
+	 * and holding the route. ex. [METHOD => [PATTERN => ROUTE]]
60
+	 *
61
+	 * @var array
62
+	 */
63
+
64
+	protected $statics  = [];
65
+
66
+	/**
67
+	 * The dynamic routes have parameters and are stored in a hashtable that every cell have
68
+	 * an array with route patterns as indexes and routes as values. ex. [INDEX => [PATTERN => ROUTE]]
69
+	 *
70
+	 * @var array
71
+	 */
72
+
73
+	protected $dynamics = [];
74
+
75
+	/**
76
+	 * Some regex wildcards for easily definition of dynamic routes. ps. all keys and values must start with :
77
+	 *
78
+	 * @var array
79
+	 */
80
+
81
+	protected $wildcards = [
82
+		":uid"     => ":uid-[a-zA-Z0-9]",
83
+		":slug"    => ":[a-z0-9-]",
84
+		":string"  => ":\w",
85
+		":int"     => ":\d",
86
+		":integer" => ":\d",
87
+		":float"   => ":[-+]?\d*?[.]?\d",
88
+		":double"  => ":[-+]?\d*?[.]?\d",
89
+		":hex"     => ":0[xX][0-9a-fA-F]",
90
+		":octal"   => ":0[1-7][0-7]",
91
+		":bool"    => ":1|0|true|false|yes|no",
92
+		":boolean" => ":1|0|true|false|yes|no",
93
+	];
94
+
95
+	/**
96
+	 * @param string $method
97
+	 * @param string $pattern
98
+	 * @param callable $action
99
+	 *
100
+	 * @throws BadRouteException 
101
+	 * @throws MethodNotSupportedException
102
+	 *
103
+	 * @return Group
104
+	 */
105
+
106
+	public function set($method, $pattern, $action)
107
+	{
108
+		$method   = $this->parseMethod($method);
109
+		$patterns = $this->parsePattern($pattern);
110
+		$group    = new Group;
111
+
112
+		foreach ($patterns as $pattern)
113
+		{
114
+			$route = new Route($this, $method, $pattern, $action);
115
+			$group->setRoute($route);
116
+
117
+			if (strpos($pattern, "{") !== false) {
118
+				   $index = $this->getDynamicIndex($method, $pattern);
119
+				   $this->dynamics[$index][$pattern] = $route;
120
+			} else $this->statics[$method][$pattern] = $route;
121
+		}
122
+
123
+		return $group;
124
+	}
125
+
126
+	public function get   ($pattern, $action) { return $this->set("get"   , $pattern, $action); }
127
+	public function post  ($pattern, $action) { return $this->set("post"  , $pattern, $action); }
128
+	public function put   ($pattern, $action) { return $this->set("put"   , $pattern, $action); }
129
+	public function patch ($pattern, $action) { return $this->set("patch" , $pattern, $action); }
130
+	public function delete($pattern, $action) { return $this->set("delete", $pattern, $action); }
131
+
132
+	/**
133
+	 * Insert a route into several http methods.
134
+	 *
135
+	 * @param string[] $methods
136
+	 * @param string $pattern
137
+	 * @param callable $action
138
+	 *
139
+	 * @return Group
140
+	 */
141
+
142
+	public function match(array $methods, $pattern, $action)
143
+	{
144
+		$group = new Group;
145
+		foreach ($methods as $method)
146
+			$group->set($this->set($method, $pattern, $action));
147
+		return $group;
148
+	}
149
+
150
+	/**
151
+	 * Insert a route into every http method supported.
152
+	 *
153
+	 * @param string $pattern
154
+	 * @param callable $action
155
+	 *
156
+	 * @return Group
157
+	 */
158
+
159
+	public function any($pattern, $action)
160
+	{
161
+		return $this->match(explode(" ", self::HTTP_METHODS), $pattern, $action);
162
+	}
163
+
164
+	/**
165
+	 * Insert a route into every http method supported but the given ones.
166
+	 *
167
+	 * @param string $methods
168
+	 * @param string $pattern
169
+	 * @param callable $action
170
+	 *
171
+	 * @return Group
172
+	 */
173
+
174
+	public function except($methods, $pattern, $action)
175
+	{
176
+		return $this->match(array_diff(explode(" ", self::HTTP_METHODS), (array) $methods), $pattern, $action);
177
+	}
178
+
179
+	/**
180
+	 * Group all given routes.
181
+	 *
182
+	 * @param Route[] $routes
183
+	 * @return Group
184
+	 */
185
+
186
+	public function group(array $routes)
187
+	{
188
+		$group = new Group;
189
+		foreach ($routes as $route)
190
+			$group->set($route);
191
+		return $group;
192
+	}
193
+
194
+	/**
195
+	 * Remove a route from collector.
196
+	 *
197
+	 * @param string $method
198
+	 * @param string $pattern
199
+	 */
200
+
201
+	public function forget($method, $pattern)
202
+	{
203
+		if (strpos($pattern, "{") === false) {
204
+			   unset($this->statics[$method][$pattern]);
205
+		} else unset($this->dynamics[$this->getDynamicIndex($method, $pattern)][$pattern]);
206
+	}
207
+
208
+	/**
209
+	 * Determine if the http method is valid.
210
+	 *
211
+	 * @param string $method
212
+	 * @throws MethodNotSupportedException
213
+	 * @return string
214
+	 */
215
+
216
+	protected function parseMethod($method)
217
+	{
218
+		$method = strtolower($method);
219
+
220
+		if (strpos(self::HTTP_METHODS, $method) === false) {
221
+			throw new MethodNotSupportedException($method);
222
+		}
223
+
224
+		return $method;
225
+	}
226
+
227
+	/**
228
+	 * Separate routes pattern with optional parts into n new patterns.
229
+	 *
230
+	 * @param string $pattern
231
+	 * @return array
232
+	 */
233
+
234
+	protected function parsePattern($pattern)
235
+	{
236
+		$withoutClosing = rtrim($pattern, "]");
237
+		$closingNumber  = strlen($pattern) - strlen($withoutClosing);
238
+
239
+		$segments = preg_split("~" . self::DYNAMIC_REGEX . "(*SKIP)(*F)|\[~x", $withoutClosing);
240
+		$this->parseSegments($segments, $closingNumber, $withoutClosing);
241
+
242
+		return $this->buildSegments($segments);
243
+	}
244
+
245
+	/**
246
+	 * Parse all the possible patterns seeking for an incorrect or incompatible pattern.
247
+	 *
248
+	 * @param string[] $segments       Segments are all the possible patterns made on top of a pattern with optional segments.
249
+	 * @param int      $closingNumber  The count of optional segments.
250
+	 * @param string   $withoutClosing The pattern without the closing token of an optional segment. aka: ]
251
+	 *
252
+	 * @throws BadRouteException
253
+	 */
254
+
255
+	protected function parseSegments(array $segments, $closingNumber, $withoutClosing)
256
+	{
257
+		if ($closingNumber !== count($segments) - 1) {
258
+			if (preg_match("~" . self::DYNAMIC_REGEX . "(*SKIP)(*F)|\]~x", $withoutClosing)) {
259
+				   throw new BadRouteException(BadRouteException::OPTIONAL_SEGMENTS_ON_MIDDLE);
260
+			} else throw new BadRouteException(BadRouteException::UNCLOSED_OPTIONAL_SEGMENTS);
261
+		}
262
+	}
263
+
264
+	/**
265
+	 * @param string[] $segments
266
+	 *
267
+	 * @throws BadRouteException
268
+	 * @return array
269
+	 */
270
+
271
+	protected function buildSegments(array $segments)
272
+	{
273
+		$pattern  = "";
274
+		$patterns = [];
275
+		$wildcardTokens = array_keys($this->wildcards);
276
+		$wildcardRegex  = $this->wildcards;
277
+
278
+		foreach ($segments as $n => $segment) {
279
+			if ($segment === "" && $n !== 0) {
280
+				throw new BadRouteException(BadRouteException::EMPTY_OPTIONAL_PARTS);
281
+			}
282
+
283
+			$patterns[] = $pattern .= str_replace($wildcardTokens, $wildcardRegex, $segment);
284
+		}
285
+
286
+		return $patterns;
287
+	}
288
+
289
+	/**
290
+	 * @param string $method
291
+	 * @param string $pattern
292
+	 *
293
+	 * @return Route|false
294
+	 */
295
+
296
+	public function findStaticRoute($method, $pattern)
297
+	{
298
+		$method = strtolower($method);
299
+		if (isset($this->statics[$method]) && isset($this->statics[$method][$pattern]))
300
+			return $this->statics[$method][$pattern];
301
+		return false;
302
+	}
303
+
304
+	/**
305
+	 * @param string $method
306
+	 * @param string $pattern
307
+	 *
308
+	 * @return array|false
309
+	 */
310
+
311
+	public function findDynamicRoutes($method, $pattern)
312
+	{
313
+		$index = $this->getDynamicIndex($method, $pattern);
314
+		return isset($this->dynamics[$index]) ? $this->dynamics[$index] : false;
315
+	}
316
+
317
+	/**
318
+	 * @param string $method
319
+	 * @param string $pattern
320
+	 *
321
+	 * @return int
322
+	 */
323
+
324
+	protected function getDynamicIndex($method, $pattern)
325
+	{
326
+		return crc32(strtolower($method)) + substr_count($pattern, "/");
327
+	}
328
+
329
+	/**
330
+	 * @return string[]
331
+	 */
332
+
333
+	public function getWildcards()
334
+	{
335
+		$wildcards = [];
336
+		foreach ($this->wildcards as $token => $regex)
337
+			$wildcards[substr($token, 1)] = substr($regex, 1);
338
+		return $wildcards;
339
+	}
340
+
341
+	/**
342
+	 * @return string[]
343
+	 */
344
+
345
+	public function getWildcardTokens()
346
+	{
347
+		return $this->wildcards;
348
+	}
349
+
350
+	/**
351
+	 * @param string $wildcard
352
+	 * @return string|null
353
+	 */
354
+
355
+	public function getWildcard($wildcard)
356
+	{
357
+		return isset($this->wildcards[":$wildcard"]) ? substr($this->wildcards[":$wildcard"], 1) : null;
358
+	}
359
+
360
+	/**
361
+	 * @param string $wildcard
362
+	 * @param string $pattern
363
+	 *
364
+	 * @return self
365
+	 */
366
+
367
+	public function setWildcard($wildcard, $pattern)
368
+	{
369
+		$this->wildcards[":$wildcard"] = ":$pattern";
370
+		return $this;
371
+	}
372 372
     
373 373
 }
Please login to merge, or discard this patch.
src/Exceptions/BadRouteException.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -19,10 +19,10 @@
 block discarded – undo
19 19
 class BadRouteException extends \Exception
20 20
 {
21 21
 
22
-    const OPTIONAL_SEGMENTS_ON_MIDDLE    = "Optional segments can only occur at the end of a route.";
23
-    const UNCLOSED_OPTIONAL_SEGMENTS     = "Number of opening [ and closing ] does not match.";
24
-    const EMPTY_OPTIONAL_PARTS           = "Empty optional part.";
25
-    const WRONG_CONTROLLER_CREATION_FUNC = "The controller creation function passed is not callable.";
26
-    const BAD_STRATEGY                   = "`%s` is not a valid route dispatch strategy, it must implement the `Codeburner\\Router\\Strategies\\StrategyInterface` interface.";
22
+	const OPTIONAL_SEGMENTS_ON_MIDDLE    = "Optional segments can only occur at the end of a route.";
23
+	const UNCLOSED_OPTIONAL_SEGMENTS     = "Number of opening [ and closing ] does not match.";
24
+	const EMPTY_OPTIONAL_PARTS           = "Empty optional part.";
25
+	const WRONG_CONTROLLER_CREATION_FUNC = "The controller creation function passed is not callable.";
26
+	const BAD_STRATEGY                   = "`%s` is not a valid route dispatch strategy, it must implement the `Codeburner\\Router\\Strategies\\StrategyInterface` interface.";
27 27
 
28 28
 }
Please login to merge, or discard this patch.
src/Exceptions/Http/BadRequestException.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 class BadRequestException extends HttpExceptionAbstract
20 20
 {
21 21
 
22
-    protected $code = 400;
23
-    protected $message = "Bad Request";
22
+	protected $code = 400;
23
+	protected $message = "Bad Request";
24 24
 
25 25
 }
Please login to merge, or discard this patch.
src/Exceptions/Http/ConflictException.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 class ConflictException extends HttpExceptionAbstract
20 20
 {
21 21
 
22
-    protected $code = 409;
23
-    protected $message = "Conflict";
22
+	protected $code = 409;
23
+	protected $message = "Conflict";
24 24
 
25 25
 }
Please login to merge, or discard this patch.