Test Failed
Push — master ( b43d38...503dcc )
by Zbigniew
06:16
created

SharepHelpMessage   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
eloc 9
c 1
b 0
f 0
dl 0
loc 20
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of the zibios/sharep.
7
 *
8
 * (c) Zbigniew Ślązak
9
 */
10
11
namespace App\Slack\SlashCommand\Sharep;
12
13
use App\Slack\MessageBuilder\Layout;
14
use App\Slack\MessageBuilder\MessageFactory;
15
16
class SharepHelpMessage
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 1
    public function generate(): Layout
27
    {
28 1
        $mf = $this->messageFactory;
29
30 1
        return $mf->layout(
31 1
            $mf->blockSection(
32 1
                $mf->elementPlainText('Please try again, proper commands are:'),
33
            ),
0 ignored issues
show
Bug introduced by
This code did not parse for me. Apparently, there is an error somewhere around this line:

Syntax error, unexpected ')'
Loading history...
34 1
            $mf->blockSection(
35 1
                $mf->elementPlainText('/sharep release'),
36
            ),
37
        );
38
    }
39
}
40