FunctionalTesterActions::assertArraySubset()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 4
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