Completed
Push — master ( f20ddf...774ab4 )
by Vitaly
02:46
created

Entity::byIDs()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 1 Features 2
Metric Value
c 2
b 1
f 2
dl 0
loc 7
rs 9.4286
cc 2
eloc 2
nc 2
nop 2
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: VITALYIEGOROV
5
 * Date: 09.12.15
6
 * Time: 12:10
7
 */
8
namespace samsoncms\api;
9
10
use samsoncms\api\query\FieldNavigation;
11
use samsonframework\orm\QueryInterface;
12
13
/**
14
 * SamsonCMS Entity that has relation to specific navigation
15
 * and though has additional fields.
16
 *
17
 * @package samsoncms\api
18
 */
19
class Entity extends Material
20
{
21
    /** @var QueryInterface Database query instance */
22
    protected $query;
23
24
    /** @var array Collection of additional fields identifiers */
25
    protected static $fieldIDs;
26
27
    /** @var array Collection of navigation identifiers */
28
    protected static $navigationIDs;
29
}
30