System::beforeCompress()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

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