AbstractAnonymize
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 3
c 1
b 0
f 0
eloc 2
wmc 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace drupol\Anonymize;
6
7
use drupol\DynamicObjects\AbstractDynamicObject;
8
9
/**
10
 * Class AbstractAnonymize.
11
 */
12
abstract class AbstractAnonymize extends AbstractDynamicObject
13
{
14
    use AnonymizeTrait;
0 ignored issues
show
Bug introduced by
The trait drupol\Anonymize\AnonymizeTrait requires the property $name which is not provided by drupol\Anonymize\AbstractAnonymize.
Loading history...
15
}
16