Fixing User#getName() when name is null.

This commit is contained in:
Alexey Skobkin 2017-01-12 21:36:57 +03:00
parent 5aa09ada31
commit 45c3a0d9c9
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ class User
return $this;
}
public function getName(): string
public function getName()
{
return $this->name;
}