Completed
Push — master ( c1e7a0...3e714a )
by Patrick
02:57
created

Data/class.DataSet.php (1 issue)

Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace Data;
4
5
class DataSet implements \ArrayAccess
6
{
7
    public function offsetSet($offset, $value)
8
    {
9
        return;
10
    }
11
12
    public function offsetExists($offset)
13
    {
14
        return $this->tableExists($offset);
15
    }
16
17
    public function offsetUnset($offset)
18
    {
19
        return;
20
    }
21
22
    public function offsetGet($offset)
23
    {
24
        return $this->getTable($offset);
25
    }
26
27
    public function tableExists($name)
28
    {
29
        throw new \Exception('Unimplemented');
30
    }
31
32
    public function getTable($name)
33
    {
34
        throw new \Exception('Unimplemented');
35
    }
36
37
    public function raw_query($query)
0 ignored issues
show
The parameter $query is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
38
    {
39
        throw new \Exception('Unimplemented');
40
    }
41
}
42
43