Completed
Push — master ( 5dd282...910bef )
by Milan
35s
created
src/Error.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
 
15 15
 
16
-    public function disappeared(): bool
17
-    {
18
-        return $this->code === 61;
19
-    }
16
+	public function disappeared(): bool
17
+	{
18
+		return $this->code === 61;
19
+	}
20 20
 
21 21
 
22 22
 	/**
Please login to merge, or discard this patch.
src/Exceptions/IdentificationNumberNotFoundException.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 
14 14
 	public function __construct(string $message = '', string $in = '', Throwable $previous = null)
15 15
 	{
16
-        $match = Strings::match($message, '/Chyba +(?<code>\d+)/');
16
+		$match = Strings::match($message, '/Chyba +(?<code>\d+)/');
17 17
 
18 18
 		parent::__construct($message, intval($match['code'] ?? 0), $previous);
19 19
 		$this->in = $in;
Please login to merge, or discard this patch.