Passed
Push — main ( e2b544...6cad5d )
by Slawomir
05:02
created

SecurityHttpTrait::findPostsByUserId()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 3
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 5
rs 10
1
<?php
2
3
namespace App\Tests\Modules\Security\Integration\Http;
4
5
use App\Tests\TestUtils\SerializationTrait;
6
use Symfony\Bundle\FrameworkBundle\KernelBrowser;
7
8
trait SecurityHttpTrait
9
{
10
11
    use SerializationTrait;
12
13
    /**
14
     * @return KernelBrowser
15
     */
16
    public abstract function getClient(): KernelBrowser;
17
}