Completed
Pull Request — master (#144)
by Kristof
07:55
created

ContentTypes   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 1
c 1
b 0
f 1
lcom 0
cbo 0
dl 0
loc 16
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
/**
3
 * @file
4
 */
5
6
namespace CultuurNet\UDB3\Event\Events;
7
8
class ContentTypes
9
{
10
    const MAP = [
11
        LabelAdded::class => 'application/vnd.cultuurnet.udb3-events.event-label-added+json',
12
        LabelDeleted::class => 'application/vnd.cultuurnet.udb3-events.event-label-deleted+json',
13
        LabelsMerged::class => 'application/vnd.cultuurnet.udb3-events.event-labels-merged+json',
14
    ];
15
16
    /**
17
     * Intentionally made private.
18
     */
19
    private function __construct()
20
    {
21
22
    }
23
}
24