Passed
Push — master ( 5cd569...687988 )
by Glynn
09:29 queued 07:23
created
src/Validator/Abstract_Validator.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 	 * @return bool
42 42
 	 */
43 43
 	public function has_errors(): bool {
44
-		return count( $this->errors ) >= 1;
44
+		return count($this->errors) >= 1;
45 45
 	}
46 46
 
47 47
 	/**
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 	 * @param string $error
60 60
 	 * @return self
61 61
 	 */
62
-	public function add_error( string $error ): self {
62
+	public function add_error(string $error): self {
63 63
 		$this->errors[] = $error;
64 64
 		return $this;
65 65
 	}
@@ -80,5 +80,5 @@  discard block
 block discarded – undo
80 80
 	 * @param \PinkCrab\Registerables\Module\Middleware\Registerable $object
81 81
 	 * @return bool
82 82
 	 */
83
-	abstract public function validate( Registerable $object ): bool;
83
+	abstract public function validate(Registerable $object): bool;
84 84
 }
Please login to merge, or discard this patch.