FunctionalTesterActions   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 23
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
getScenario() 0 1 ?
A assertArraySubset() 0 3 1
1
<?php  //[STAMP] d2a298893573661fdbd787dcfa27a7b0
2
namespace _generated;
3
4
// This class was automatically generated by build task
5
// You should not change it manually as it will be overwritten on next build
6
// @codingStandardsIgnoreFile
7
8
use Helper\Functional;
9
10
trait FunctionalTesterActions
11
{
12
    /**
13
     * @return \Codeception\Scenario
14
     */
15
    abstract protected function getScenario();
16
17
    
18
    /**
19
     * [!] Method is generated. Documentation taken from corresponding module.
20
     *
21
     * Checks that array contains subset.
22
     *
23
     * @param array  $subset
24
     * @param array  $array
25
     * @param bool   $strict
26
     * @param string $message
27
     * @see \Codeception\Module::assertArraySubset()
28
     */
29
    public function assertArraySubset($subset, $array, $strict = null, $message = null) {
0 ignored issues
show
Unused Code introduced by
The parameter $subset is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Unused Code introduced by
The parameter $array is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Unused Code introduced by
The parameter $strict is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Unused Code introduced by
The parameter $message is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
30
        return $this->getScenario()->runStep(new \Codeception\Step\Action('assertArraySubset', func_get_args()));
31
    }
32
}
33