Completed
Push — master ( df861b...0cf3e1 )
by Sergey
03:43
created

Vacancies   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 3

Importance

Changes 3
Bugs 0 Features 0
Metric Value
wmc 1
c 3
b 0
f 0
lcom 0
cbo 3
dl 0
loc 11
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A blacklisted() 0 4 1
1
<?php
2
3
namespace seregazhuk\HeadHunterApi\EndPoints;
4
5
use seregazhuk\HeadHunterApi\Traits\HasView;
6
use seregazhuk\HeadHunterApi\Traits\Searchable;
7
8
class Vacancies extends Endpoint
9
{
10
    const RESOURCE = 'vacancies';
11
12
    use HasView, Searchable;
13
14
    public function blacklisted()
15
    {
16
        return $this->getResource('blacklisted');
17
    }
18
}