TJournal   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 12
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A domain() 0 3 1
1
<?php
2
3
namespace Osnova;
4
5
use Osnova\Services\Subsites\Traits\SubsitesService;
6
use Osnova\Services\Timeline\Traits\TimelineService;
7
use Osnova\Services\Tweets\Traits\TweetsService;
8
use Osnova\Services\Users\Traits\UsersService;
9
10
class TJournal extends OsnovaResource
11
{
12
    use TimelineService, SubsitesService, TweetsService, UsersService;
13
14
    /**
15
     * Get the resource domain.
16
     *
17
     * @return string
18
     */
19
    public static function domain()
20
    {
21
        return 'tjournal.ru';
22
    }
23
}
24