Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
Calldisplay
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
1 / 1
 getQueryImage
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2
3namespace BO\Zmsdb\Query;
4
5class 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}