Completed
Pull Request — master (#1984)
by Maciej
22:01
created

PostFlushEventArgs::__construct()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 7

Duplication

Lines 7
Ratio 100 %

Code Coverage

Tests 0
CRAP Score 6

Importance

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