Completed
Push — master ( c0d92b...c0ae4b )
by Mahmoud
03:11
created

PrivateApi::getJsonFilePath()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace App\Containers\Documentation\Objects;
4
5
use App\Containers\Documentation\Abstracts\ApiTypeAbstract;
6
use App\Containers\Documentation\Contracts\ApiTypeInterface;
7
8
/**
9
 * Class PrivateApi.
10
 *
11
 * @author Mahmoud Zalt <[email protected]>
12
 */
13
class PrivateApi extends ApiTypeAbstract implements ApiTypeInterface
14
{
15
16
    public static $type = 'private';
17
18
}
19