Pager   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
namespace WagnerMontanini\GoomerApi\Support;
4
5
use CoffeeCode\Paginator\Paginator;
6
7
/**
8
 * Class Pager
9
 *
10
 * @author Wagner Montanini
11
 * @package WagnerMontanini\GoomerApi\Support
12
 */
13
class Pager extends Paginator
14
{
15
    /**
16
     * Pager constructor.
17
     *
18
     * @param string $link
19
     * @param null|string $title
20
     * @param array|null $first
21
     * @param array|null $last
22
     */
23
    public function __construct(string $link, ?string $title = null, ?array $first = null, ?array $last = null)
24
    {
25
        parent::__construct($link, $title, $first, $last);
26
    }
27
}