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
namespace Drupal\qa\Plugin\Qa\Control\Cache;
4
5
use Drupal\qa\Plugin\Qa\Control\BasePackage;
6
7
/**
8
 * @file
9
 * OSInet QA Plugin for cache checks.
10
 *
11
 * @copyright Copyright (C) 2014-2018 Frederic G. MARAND for Ouest Systèmes Informatiques (OSInet)
12
 *
13
 * @since DRUPAL-7
14
 *
15
 * @license Licensed under the disjunction of the CeCILL, version 2 and General Public License version 2 and later
16
 */
17
18
class Package extends BasePackage {
19
  public function init() {
20
    $this->title = t('Cache');
21
    $this->description = t('Look for suspicious content in database cache. Do NOT use with other cache types.');
22
  }
23
}
24