Passed
Push — master ( cbe288...130872 )
by Peter
02:31
created

PageCategory   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 13
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace AbterPhp\Website\Service\RepoGrid;
6
7
use AbterPhp\Framework\Databases\Queries\FoundRows;
8
use AbterPhp\Framework\Http\Service\RepoGrid\RepoGridAbstract;
9
use AbterPhp\Website\Grid\Factory\PageCategory as GridFactory;
10
use AbterPhp\Website\Orm\PageCategoryRepo as Repo;
11
use Casbin\Enforcer;
12
13
class PageCategory extends RepoGridAbstract
14
{
15
    /**
16
     * PageCategory constructor.
17
     *
18
     * @param Enforcer    $enforcer
19
     * @param Repo        $repo
20
     * @param FoundRows   $foundRows
21
     * @param GridFactory $gridFactory
22
     */
23
    public function __construct(Enforcer $enforcer, Repo $repo, FoundRows $foundRows, GridFactory $gridFactory)
24
    {
25
        parent::__construct($enforcer, $repo, $foundRows, $gridFactory);
26
    }
27
}
28