TagRepository
last analyzed

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
c 2
b 0
f 0
dl 0
loc 9

1 Method

Rating   Name   Duplication   Size   Complexity  
allForNamespace() 0 1 ?
1
<?php
2
3
namespace Modules\Tag\Repositories;
4
5
use Modules\Core\Repositories\BaseRepository;
6
7
interface TagRepository extends BaseRepository
8
{
9
    /**
10
     * Get all the tags in the given namespace
11
     * @param string $namespace
12
     * @return \Illuminate\Database\Eloquent\Collection
13
     */
14
    public function allForNamespace($namespace);
15
}
16