Entity
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
wmc 0
lcom 0
cbo 0

1 Method

Rating   Name   Duplication   Size   Complexity  
__construct() 0 1 ?
1
<?php
2
3
namespace Baguette\Mastodon\Entity;
4
5
/**
6
 * Entity abstract class
7
 *
8
 * @author    USAMI Kenta <[email protected]>
9
 * @copyright 2017 Baguette HQ
10
 * @license   https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0
11
 * @see https://github.com/tootsuite/documentation/blob/master/Using-the-API/API.md
12
 */
13
abstract class Entity implements \Teto\Object\ToArrayInterface
14
{
15
    abstract public function __construct(array $properties);
16
}
17