Completed
Push — master ( 840382...96750c )
by
unknown
07:37
created

gallery

Complexity

Total Complexity 0

Size/Duplication

Total Lines 35
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 1
dl 0
loc 35
ccs 0
cts 0
cp 0
c 0
b 0
f 0
1
<?php
2
//[PHPCOMPRESSOR(remove,start)]
3
/**
4
 * Created by PhpStorm.
5
 * User: Myslyvyi
6
 * Date: 09.02.16
7
 * Time: 13:35
8
 */
9
namespace samson\activerecord;
10
11
use samsonframework\orm\Record;
12
13
/**
14
 * This is emulated classes that should be generated by
15
 * ORM module. This is needed for IDE and databaseless testing.
16
 */
17 1
if (!class_exists('\samson\activerecord\gallery', false)) {
18
    class gallery extends Record
0 ignored issues
show
Coding Style introduced by
This class is not in CamelCase format.

Classes in PHP are usually named in CamelCase.

In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. The whole name starts with a capital letter as well.

Thus the name database provider becomes DatabaseProvider.

Loading history...
19
    {
20
        /** @var integer Primary key */
21
        public $PhotoID;
22
23
        /** @var integer Material identifier */
24
        public $MaterialID;
25
26
        /** @var integer MaterialField identifier */
27
        public $materialFieldID;
28
29
        /** @var integer Priority inside material relation */
30
        public $priority;
31
32
        /** @var string Path for picture */
33
        public $Path;
34
35
        /** @var string Name identifier */
36
        public $Src;
37
38
        /** @var int Size picture */
39
        public $size;
40
41
        /** @var int The field with upload date picture */
42
        public $Loaded;
43
44
        /** @var string Description alt value for picture */
45
        public $Description;
46
47
        /** @var string Additional field name */
48
        public $Name;
49
50
        /** @var bool Internal existence flag */
51
        public $Active;
52
    }
53 1
}
54
//[PHPCOMPRESSOR(remove,end)]
55