QueryCountClientTrait   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A request() 0 13 1
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of the Liip/FunctionalTestBundle
7
 *
8
 * (c) Lukas Kahwe Smith <[email protected]>
9
 *
10
 * This source file is subject to the MIT license that is bundled
11
 * with this source code in the file LICENSE.
12
 */
13
14
namespace Liip\FunctionalTestBundle;
15
16
use Symfony\Component\DomCrawler\Crawler;
17
18
/**
19
 * @author Sullivan Senechal <[email protected]>
20
 *
21
 * @internal
22
 */
23
trait QueryCountClientTrait
24
{
25
    public function request(
26
        string $method,
27
        string $uri,
28
        array $parameters = [],
29
        array $files = [],
30
        array $server = [],
31
        string $content = null,
32
        bool $changeHistory = true
33
    ): Crawler {
34
        $crawler = parent::request($method, $uri, $parameters, $files, $server, $content, $changeHistory);
35
        $this->checkQueryCount();
0 ignored issues
show
Bug introduced by
It seems like checkQueryCount() must be provided by classes using this trait. How about adding it as abstract method to this trait? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

35
        $this->/** @scrutinizer ignore-call */ 
36
               checkQueryCount();
Loading history...
36
37
        return $crawler;
38
    }
39
}
40