Completed
Push — master ( 393139...42de56 )
by Mitchel
02:18
created
src/Middleware/DebugMiddleware.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
     }
73 73
 
74 74
     /**
75
-     * @return callable
75
+     * @return \Closure
76 76
      */
77 77
     public static function tap()
78 78
     {
Please login to merge, or discard this patch.
tests/Certificate/DefaultCertificateTest.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -13,10 +13,10 @@
 block discarded – undo
13 13
      */
14 14
     public function itRepresentsADefaultCertificate()
15 15
     {
16
-       $certificate = DefaultCertificate::fromString('certificate');
16
+        $certificate = DefaultCertificate::fromString('certificate');
17 17
 
18
-       $this->assertInstanceOf(DefaultCertificate::class, $certificate);
19
-       $this->assertInstanceOf(Certificate::class, $certificate);
20
-       $this->assertEquals('certificate', $certificate->toString());
18
+        $this->assertInstanceOf(DefaultCertificate::class, $certificate);
19
+        $this->assertInstanceOf(Certificate::class, $certificate);
20
+        $this->assertEquals('certificate', $certificate->toString());
21 21
     }
22 22
 }
Please login to merge, or discard this patch.