Passed
Push — develop ( 563d60...a1fa3c )
by Septianata
12:38 queued 12s
created

HomeConservation   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 9
ccs 0
cts 1
cp 0
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A run() 0 2 1
1
<?php
2
3
namespace App\Conversations;
4
5
use BotMan\BotMan\Messages\Conversations\Conversation;
6
7
class HomeConservation extends Conversation
8
{
9
    /**
10
     * Start the conversation.
11
     *
12
     * @return $this
13
     */
14
    public function run()
15
    {
16
        // return;
17
    }
18
}
19