| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class MemoryUser implements UserInterface |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | private $userName; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * MemoryUser constructor. |
||
| 21 | * @param string $userName |
||
| 22 | */ |
||
| 23 | public function __construct(string $userName) |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return string |
||
| 30 | */ |
||
| 31 | public function getUserName(): string |
||
| 36 |