Optimized Entities, Controllers and tests

This commit is contained in:
Kevin Frantz
2018-09-06 20:20:29 +02:00
parent 69ea47facd
commit cff5afe018
6 changed files with 13 additions and 7 deletions

View File

@@ -19,7 +19,7 @@ trait UsernameAttribut{
}
public function setUsername(string $username):void{
$this->username = $username;
$this->username = \trim($username);
}
}