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

Result   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 17
rs 10
c 0
b 0
f 0
wmc 4

4 Methods

Rating   Name   Duplication   Size   Complexity  
A offsetUnset() 0 2 1
A offsetGet() 0 2 1
A offsetExists() 0 2 1
A offsetSet() 0 2 1
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