AbstractPostRepository::getBySlang()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
c 0
b 0
f 0
rs 10
cc 1
nc 1
nop 0
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