Completed
Pull Request — master (#11)
by Dima
02:23
created

gallery

Complexity

Total Complexity 0

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 0
c 1
b 0
f 1
lcom 0
cbo 1
dl 0
loc 4
ccs 0
cts 0
cp 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
21
    }
22 1
}
23
//[PHPCOMPRESSOR(remove,end)]
24