Completed
Push — master ( 1ebd5f...de33d4 )
by Siim
10:15
created

AbstractDto::toArray()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: siim
5
 * Date: 24.01.19
6
 * Time: 16:01
7
 */
8
9
namespace Sf4\Api\Dto;
10
11
use Sf4\Api\Utils\Traits\SerializerTrait;
12
13
abstract class AbstractDto implements DtoInterface
14
{
15
    use SerializerTrait;
16
}
17