Pager::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

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