CommentCreatedEvent   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 0
dl 0
loc 17
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A getCommentId() 0 4 1
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of the Explicit Architecture POC,
7
 * which is created on top of the Symfony Demo application.
8
 *
9
 * (c) Herberto Graça <[email protected]>
10
 *
11
 * For the full copyright and license information, please view the LICENSE
12
 * file that was distributed with this source code.
13
 */
14
15
namespace Acme\App\Core\SharedKernel\Component\Blog\Application\Event;
16
17
use Acme\App\Core\SharedKernel\Component\Blog\Domain\Post\Comment\CommentId;
18
use Acme\App\Core\SharedKernel\Port\EventDispatcher\EventInterface;
19
20
/**
21
 * This is just a DTO, it only has getters, theres no logic to test, so we ignore it for code coverage purposes.
22
 *
23
 * @codeCoverageIgnore
24
 */
25
final class CommentCreatedEvent implements EventInterface
26
{
27
    /**
28
     * @var CommentId
29
     */
30
    private $commentId;
31
32
    public function __construct(CommentId $commentId)
33
    {
34
        $this->commentId = $commentId;
35
    }
36
37
    public function getCommentId(): CommentId
38
    {
39
        return $this->commentId;
40
    }
41
}
42