Passed
Push — develop ( dd9f3a...ebcaaf )
by Stone
14:41 queued 14s
created
src/Entity/User.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
      */
122 122
     public function getUsername(): string
123 123
     {
124
-        return (string)$this->userName;
124
+        return (string) $this->userName;
125 125
     }
126 126
 
127 127
     /**
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
      */
149 149
     public function getPassword(): string
150 150
     {
151
-        return (string)$this->password;
151
+        return (string) $this->password;
152 152
     }
153 153
 
154 154
     public function setPassword(string $password): self
@@ -379,6 +379,6 @@  discard block
 block discarded – undo
379 379
 
380 380
     public function __toString()
381 381
     {
382
-        return $this->getUsername() . ' / ' . $this->getEmail();
382
+        return $this->getUsername().' / '.$this->getEmail();
383 383
     }
384 384
 }
Please login to merge, or discard this patch.