Test Failed
Push — master ( 988c49...052020 )
by Davis
01:52
created

AbstractPostRepository   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getBySlang() 0 1 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: davis
5
 * Date: 7/23/17
6
 * Time: 1:00 PM
7
 */
8
9
namespace DavisPeixoto\BlogCore\Repository;
10
11
use DavisPeixoto\BlogCore\Interfaces\RepositoryInterface;
12
13
/**
14
 * Class AbstractPostRepository
15
 * @package DavisPeixoto\BlogCore\Repository
16
 * @codeCoverageIgnore
17
 */
18
abstract class AbstractPostRepository implements RepositoryInterface
19
{
20
    public function getBySlang() {}
21
}
22