AbstractResponse::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 1
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 0
dl 0
loc 1
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
/*
4
 * This file is part of the pexels-library package.
5
 *
6
 * (c) 2019 WEBEWEB
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace WBW\Library\Pexels\Response;
13
14
use WBW\Library\Provider\Response\AbstractResponse as BaseResponse;
15
use WBW\Library\Traits\Compounds\CompoundRateLimitTrait;
16
17
/**
18
 * Abstract response.
19
 *
20
 * @author webeweb <https://github.com/webeweb>
21
 * @package WBW\Library\Pexels\Response
22
 * @abstract
23
 */
24
abstract class AbstractResponse extends BaseResponse {
25
26
    use CompoundRateLimitTrait;
27
28
    /**
29
     * Constructor.
30
     */
31
    public function __construct() {
32
        // NOTHING TO DO
33
    }
34
}
35