Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 7 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
47 | View Code Duplication | public function __invoke() |
|
48 | { |
||
49 | $statement = $this->table->getDatabase()->execute((string) $this, $this->marks); |
||
50 | $statement->setFetchMode(PDO::FETCH_NUM); |
||
51 | |||
52 | return $statement; |
||
53 | } |
||
54 | |||
71 |