SampleRequest::getMapping()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 1
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
c 1
b 1
f 0
dl 0
loc 1
rs 10
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
namespace Thunder\SimilarWebApi\Tests\Dummy;
3
4
use Thunder\SimilarWebApi\AbstractRequest;
5
6
/**
7
 * @author Tomasz Kowalczyk <[email protected]>
8
 */
9
class SampleRequest extends AbstractRequest
10
    {
11
    public function __construct()
12
        {
13
        $this->args['invalid'] = $this->validateArg('invalid', null);
14
        }
15
16
    public function getName() { return null; }
17
    public function getUrl() { return null; }
18
    public function getMapping() { return null; }
19
    }
20