GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 764334...261594 )
by Alexey
33:15
created

CommentModule   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
dl 0
loc 18
rs 10
c 0
b 0
f 0
ccs 0
cts 2
cp 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getExtraDirectoriesToImport() 0 6 1
1
<?php
2
/**
3
 * @author Nikita Melnikov <[email protected]>
4
 * @link https://github.com/shogodev/argilla/
5
 * @copyright Copyright &copy; 2003-2014 Shogo
6
 * @license http://argilla.ru/LICENSE
7
 * @package backend.modules.comment
8
 */
9
class CommentModule extends BModule
10
{
11
  public $name = 'Комментарии';
12
13
  public $defaultController = 'BComment';
14
15
  public $enabled = false;
16
17
  /**
18
   * @return array
19
   */
20
  protected function getExtraDirectoriesToImport()
21
  {
22
    return array(
23
      'backend.modules.user.models.*'
24
    );
25
  }
26
}