| Total Complexity | 2 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | class NotRecognizedUserMessage |
||
| 17 | { |
||
| 18 | /** @var MessageFactory */ |
||
| 19 | private $messageFactory; |
||
| 20 | |||
| 21 | 3 | public function __construct(MessageFactory $messageFactory) |
|
| 22 | { |
||
| 23 | 3 | $this->messageFactory = $messageFactory; |
|
| 24 | 3 | } |
|
| 25 | |||
| 26 | public function generate(): Layout |
||
| 27 | { |
||
| 28 | $mf = $this->messageFactory; |
||
| 29 | |||
| 30 | return $mf->layout( |
||
| 31 | $mf->blockSection( |
||
| 32 | $mf->elementPlainText('I do not know you!'), |
||
| 33 | ) |
||
| 37 |