Passed
Branch main (97ff0a)
by Giovanni A. L.
07:36
created
Category
src/RouterTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@
 block discarded – undo
119 119
 		$data = $this->data;
120 120
 		$namespace = $this->namespace;
121 121
 
122
-		$router = function () use ($method, $handler, $data, $route, $name, $namespace) {
122
+		$router = function() use ($method, $handler, $data, $route, $name, $namespace) {
123 123
 			return [
124 124
 				'route' => $route,
125 125
 				'name' => $name,
Please login to merge, or discard this patch.
src/Dispatch.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
 	 * @param string|null $namespace
94 94
 	 * @return $this
95 95
 	 */
96
-	public function namespace(?string $namespace): Dispatch
96
+	public function namespace(?string $namespace) : Dispatch
97 97
 	{
98 98
 		$this->namespace = ($namespace ? ucwords($namespace) : null);
99 99
 		return $this;
Please login to merge, or discard this patch.