Completed
Push — 7.x-1.x ( 2f9e3c...1070be )
by Frédéric G.
01:36
created

Package   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 10
c 0
b 0
f 0
wmc 1
lcom 1
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A init() 0 4 1
1
<?php
2
/**
3
 * @file
4
 * OSInet QA Plugin for i18n (internationalization) module
5
 *
6
 * @copyright Copyright (C) 2011 Frederic G. MARAND for Ouest Systèmes Informatiques (OSInet)
7
 *
8
 * @since DRUPAL-6
9
 *
10
 * @license Licensed under the disjunction of the CeCILL, version 2 and General Public License version 2 and later
11
 */
12
13
namespace Drupal\qa\Plugin\Qa\Control\I18n;
14
15
use Drupal\qa\Plugin\Qa\Control\BasePackage;
16
17
class Package extends BasePackage {
18
  public function init() {
19
    $this->title = t('i18n');
20
    $this->description = t('Inconsistent variables translation');
21
  }
22
}
23