Completed
Push — master ( 791c20...d90c8e )
by Pierre
03:16
created

Result::offsetGet()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 0
nc 1
nop 1
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
<?php
2
3
/*
4
 * To change this license header, choose License Headers in Project Properties.
5
 * To change this template file, choose Tools | Templates
6
 * and open the template in the editor.
7
 */
8
9
class Result implements ArrayAccess
10
{
11
    
12
    public function offsetExists($offset): bool
13
    {
14
    }
15
16
    public function offsetGet($offset)
17
    {
18
    }
19
20
    public function offsetSet($offset, $value): void
21
    {
22
    }
23
24
    public function offsetUnset($offset): void
25
    {
26
    }
27
}
28