System   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A beforeCompress() 0 4 1
A afterCompress() 0 4 1
1
<?php declare(strict_types=1);
2
namespace samsonphp\core;
3
4
use samson\core\ExternalModule;
5
use samsonframework\core\CompressInterface;
6
7
/**
8
 * SamsonPHP core module representation class.
9
 *
10
 * @author Vitaly Iegorov
11
 * @deprecated
12
 */
13
class System extends ExternalModule implements CompressInterface
14
{
15
	protected $id = 'core';
16
17
    /** {@inheritdoc} */
18
    public function beforeCompress(&$obj = null, array &$code = null)
19
    {
20
21
    }
22
23
    /** {@inheritdoc} */
24
    public function afterCompress(&$obj = null, array &$code = null)
25
    {
26
27
    }
28
}
29