Passed
Push — master ( 2b97dd...4cf6b1 )
by Jonathan
20:51
created

Path::demo()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
crap 1
1
<?php
2
declare(strict_types=1);
3
4
/**
5
 * ReportingCloud PHP SDK
6
 *
7
 * PHP SDK for ReportingCloud Web API. Authored and supported by Text Control GmbH.
8
 *
9
 * @link      https://www.reporting.cloud to learn more about ReportingCloud
10
 * @link      https://github.com/TextControl/txtextcontrol-reportingcloud-php for the canonical source repository
11
 * @license   https://raw.githubusercontent.com/TextControl/txtextcontrol-reportingcloud-php/master/LICENSE.md
12
 * @copyright © 2019 Text Control GmbH
13
 */
14
15
namespace TxTextControl\ReportingCloud\Stdlib;
16
17
/**
18
 * Class Path
19
 *
20
 * @package TxTextControl\ReportingCloud
21
 * @author  Jonathan Maron (@JonathanMaron)
22
 */
23
class Path
24
{
25
    /**
26
     * Return the root path of PHP SDK for ReportingCloud Web API
27
     *
28
     * @return string
29
     */
30 108
    public static function root(): string
31
    {
32 108
        return dirname(__FILE__, 3);
33
    }
34
35
    /**
36
     * Return the binary path of PHP SDK for ReportingCloud Web API
37
     *
38
     * @return string
39
     */
40 3
    public static function bin(): string
41
    {
42 3
        return sprintf('%s/bin', self::root());
43
    }
44
45
    /**
46
     * Return the data path of PHP SDK for ReportingCloud Web API
47
     *
48
     * @return string
49
     */
50 33
    public static function data(): string
51
    {
52 33
        return sprintf('%s/data', self::root());
53
    }
54
55
    /**
56
     * Return the demo path of PHP SDK for ReportingCloud Web API
57
     *
58
     * @return string
59
     */
60 3
    public static function demo(): string
61
    {
62 3
        return sprintf('%s/demo', self::root());
63
    }
64
65
    /**
66
     * Return the output path of PHP SDK for ReportingCloud Web API
67
     *
68
     * @return string
69
     */
70 3
    public static function output(): string
71
    {
72 3
        return sprintf('%s/output', self::root());
73
    }
74
75
    /**
76
     * Return the resources path of PHP SDK for ReportingCloud Web API
77
     *
78
     * @return string
79
     */
80 78
    public static function resource(): string
81
    {
82 78
        return sprintf('%s/resource', self::root());
83
    }
84
85
    /**
86
     * Return the rest path of PHP SDK for ReportingCloud Web API
87
     *
88
     * @return string
89
     */
90 3
    public static function test(): string
91
    {
92 3
        return sprintf('%s/test', self::root());
93
    }
94
}
95