CodeGuy
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 0
dl 0
loc 8
c 0
b 0
f 0
1
<?php
2
3
4
/**
5
 * Inherited Methods
6
 * @method void wantToTest($text)
7
 * @method void wantTo($text)
8
 * @method void execute($callable)
9
 * @method void expectTo($prediction)
10
 * @method void expect($prediction)
11
 * @method void amGoingTo($argumentation)
12
 * @method void am($role)
13
 * @method void lookForwardTo($achieveValue)
14
 * @method void comment($description)
15
 * @method \Codeception\Lib\Friend haveFriend($name, $actorClass = null)
16
 * @method void capturedOutputStream()
17
 *
18
 * @SuppressWarnings(PHPMD)
19
*/
20
class CodeGuy extends \Codeception\Actor
21
{
22
    use _generated\CodeGuyActions;
23
24
   /**
25
    * Define custom actions here
26
    */
27
}
28