Completed
Push — master ( 89669e...359978 )
by Kirill
03:25
created

Properties::__debugInfo()   C

Complexity

Conditions 8
Paths 8

Size

Total Lines 27
Code Lines 15

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 2
Metric Value
c 2
b 0
f 2
dl 0
loc 27
rs 5.3846
cc 8
eloc 15
nc 8
nop 0
1
<?php
2
/**
3
 * This file is part of Properties package.
4
 *
5
 * @author Serafim <[email protected]>
6
 * @date 14.04.2016 17:07
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
namespace Serafim\Properties;
12
13
use Serafim\Properties\Support\Registry;
14
use Serafim\Properties\Support\Strings as Str;
15
16
/**
17
 * Class Properties
18
 * @package Serafim\Properties
19
 */
20
trait Properties
21
{
22
    use Getters, Setters;
23
}
24