Completed
Push — master ( 0064c0...edb671 )
by Jeroen
02:11
created
src/Interfaces/Http/Middleware.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -7,12 +7,12 @@
 block discarded – undo
7 7
 
8 8
 interface Middleware
9 9
 {
10
-	/**
11
-	 * @param ServerRequestInterface $request
12
-	 * @param ResponseInterface $response
13
-	 * @param callable $next
14
-	 *
15
-	 * @return ResponseInterface
16
-	 */
17
-	public function __invoke(ServerRequestInterface $request, ResponseInterface $response, callable $next) : ResponseInterface;
10
+    /**
11
+     * @param ServerRequestInterface $request
12
+     * @param ResponseInterface $response
13
+     * @param callable $next
14
+     *
15
+     * @return ResponseInterface
16
+     */
17
+    public function __invoke(ServerRequestInterface $request, ResponseInterface $response, callable $next) : ResponseInterface;
18 18
 }
Please login to merge, or discard this patch.
src/Console/Command.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -4,10 +4,10 @@
 block discarded – undo
4 4
 
5 5
 abstract class Command
6 6
 {
7
-	/**
8
-	 * Execute the console command.
9
-	 *
10
-	 * @return mixed
11
-	 */
12
-	abstract public function handle();
7
+    /**
8
+     * Execute the console command.
9
+     *
10
+     * @return mixed
11
+     */
12
+    abstract public function handle();
13 13
 }
14 14
\ No newline at end of file
Please login to merge, or discard this patch.