Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
Calldisplay | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
getQueryImage | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | |
3 | namespace BO\Zmsdb\Query; |
4 | |
5 | class Calldisplay extends Base |
6 | { |
7 | /** |
8 | * @var String TABLE mysql table reference |
9 | */ |
10 | const TABLE = 'imagedata'; |
11 | |
12 | public function getQueryImage() |
13 | { |
14 | return 'SELECT imagename as name, imagecontent as data FROM `imagedata` |
15 | WHERE `imagename` LIKE :name LIMIT 1'; |
16 | } |
17 | } |