AbstractResponse   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 1 1
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