Completed
Pull Request — master (#12)
by
unknown
11:18
created

Env   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 4
eloc 2
dl 0
loc 19
rs 10
c 0
b 0
f 0

4 Methods

Rating   Name   Duplication   Size   Complexity  
A offsetUnset() 0 2 1
A offsetExists() 0 2 1
A offsetSet() 0 2 1
A offsetGet() 0 3 1
1
<?php
2
3
namespace hiqdev\composer\config\configs;
4
5
class Env implements \ArrayAccess
6
{
7
    public function offsetGet($offset)
8
    {
9
        return "%env($offset)%";
10
    }
11
12
    public function offsetExists($offset)
13
    {
14
        // TODO: Implement offsetExists() method.
15
    }
16
17
    public function offsetSet($offset, $value)
18
    {
19
        // TODO: Implement offsetSet() method.
20
    }
21
22
    public function offsetUnset($offset)
23
    {
24
        // TODO: Implement offsetUnset() method.
25
    }
26
}