Completed
Pull Request — master (#248)
by Anton
05:37
created

Crud::readSet()   B

Complexity

Conditions 5
Paths 8

Size

Total Lines 32
Code Lines 20

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 18
CRAP Score 5

Importance

Changes 0
Metric Value
cc 5
eloc 20
c 0
b 0
f 0
nc 8
nop 3
dl 0
loc 32
rs 8.439
ccs 18
cts 18
cp 1
crap 5
1
<?php
2
/**
3
 * @copyright Bluz PHP Team
4
 * @link https://github.com/bluzphp/skeleton
5
 */
6
7
/**
8
 * @namespace
9
 */
10
namespace Application\Test;
11
12
use Bluz\Proxy\Db;
13
use Bluz\Proxy\Request;
14
use Bluz\Proxy\Response;
15
16
/**
17
 * Crud based on Db\Table
18
 *
19
 * @package  Application\Test
20
 *
21
 * @method   Table getTable()
22
 *
23
 * @author   Anton Shevchuk
24
 * @created  03.09.12 13:11
25
 */
26
class Crud extends \Bluz\Crud\Table
27
{
28
}
29