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

TestApplicationOutboundEvent   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
c 1
b 0
f 0
dl 0
loc 7
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
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
}