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

Env::offsetGet()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 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
}