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

View file

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