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

Package::init()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 3
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
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