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

BuildProcessComplete::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 0
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