Completed
Pull Request — master (#1984)
by Maciej
21:32
created

OnFlushEventArgs::__construct()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 7

Duplication

Lines 7
Ratio 100 %

Code Coverage

Tests 4
CRAP Score 2.032

Importance

Changes 0
Metric Value
dl 7
loc 7
ccs 4
cts 5
cp 0.8
rs 10
c 0
b 0
f 0
cc 2
nc 2
nop 1
crap 2.032
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Doctrine\ODM\MongoDB\Event;
6
7
/**
8
 * Provides event arguments for the onFlush event.
9
 */
10
final class OnFlushEventArgs extends ManagerEventArgs
11
{
12
}
13