PrePersist
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 2
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 2
c 0
b 0
f 0
wmc 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Doctrine\ORM\Annotation;
6
7
/**
8
 * @Annotation
9
 * @Target("METHOD")
10
 */
11
final class PrePersist implements Annotation
12
{
13
}
14