Test Setup Failed
Push — main ( abdcb9...2e5f68 )
by Slawomir
04:37
created

TestApplicationOutboundEvent::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 3
rs 10
1
<?php
2
3
namespace App\Tests\Infrastructure\Events;
4
5
use App\Infrastructure\Events\ApplicationInboundEvent;
6
use App\Infrastructure\Events\ApplicationOutboundEvent;
7
use Symfony\Component\Uid\Ulid;
8
9
class TestApplicationOutboundEvent extends ApplicationOutboundEvent
10
{
11
12
13
    public function __construct(array $data)
14
    {
15
        parent::__construct("TEST_EVENT", $data);
16
    }
17
}