Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
100.00% covered (success)
0 / 0
100.00% covered (success)
100.00%
0 / 0
CRAP
100.00% covered (success)
100.00%
0 / 0
<?php
interface interface_model {
    public function findById($id);
    public function insert($oItem);
    public function update($oItem);
    public function delete($oItem);
}