AbstractPostRepository   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getBySlang() 0 3 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
    }
23
}
24