Completed
Push — master ( 31f749...440829 )
by ARCANEDEV
35:42
created

Foundation::version()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 1
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
ccs 1
cts 1
cp 1
rs 10
cc 1
eloc 2
nc 1
nop 0
crap 1
1
<?php namespace Arcanesoft\Foundation;
2
3
/**
4
 * Class     Foundation
5
 *
6
 * @package  Arcanesoft\Foundation
7
 * @author   ARCANEDEV <[email protected]>
8
 */
9
class Foundation
10
{
11
    /* ------------------------------------------------------------------------------------------------
12
     |  Constants
13
     | ------------------------------------------------------------------------------------------------
14
     */
15 8
    const VERSION = '0.6.3';
16
17
    /* ------------------------------------------------------------------------------------------------
18 8
     |  Getters & Setters
19
     | ------------------------------------------------------------------------------------------------
20
     */
21
    /**
22
     * Get the package version.
23
     *
24
     * @return string
25
     */
26
    public function version()
27
    {
28
        return self::VERSION;
29 4
    }
30
}
31