Completed
Push — master ( 808f8c...952fde )
by Vladimir
11s
created

BuildProcessComplete   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 8
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
/**
4
 * @copyright 2018 Vladimir Jimenez
5
 * @license   https://github.com/allejo/stakx/blob/master/LICENSE.md MIT
6
 */
7
8
namespace allejo\stakx\Event;
9
10
use Symfony\Component\EventDispatcher\Event;
11
12
/**
13
 * A notification-only event that is fired whenever the website finishes building.
14
 *
15
 * @since 0.2.0
16
 */
17
class BuildProcessComplete extends Event
18
{
19
    const NAME = 'build.process.complete';
20
21
    public function __construct()
22
    {
23
    }
24
}
25