Completed
Push — master ( 02adfd...e7d8dc )
by Rafał
15:42
created

MultiTenancyEvents   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
/*
4
 * This file is part of the Superdesk Web Publisher MultiTenancy Bundle.
5
 *
6
 * Copyright 2015 Sourcefabric z.u. and contributors.
7
 *
8
 * For the full copyright and license information, please see the
9
 * AUTHORS and LICENSE files distributed with this source code.
10
 *
11
 * @copyright 2015 Sourcefabric z.ú
12
 * @license http://www.superdesk.org/license
13
 */
14
15
namespace SWP\Bundle\MultiTenancyBundle;
16
17
final class MultiTenancyEvents
18
{
19
    /**
20
     * The TENANT_SET event occurs after setting tenant in context.
21
     *
22
     * @Event("Symfony\Component\EventDispatcher\GenericEvent")
23
     *
24
     * @var string
25
     */
26
    const TENANT_SET = 'swp.tenant.set';
27
28
    private function __construct()
29
    {
30
    }
31
}
32