TransporterEvents
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 0
dl 0
loc 11
ccs 0
cts 0
cp 0
c 0
b 0
f 0
1
<?php
2
3
/*
4
 * This file is part of the Conveyor package.
5
 *
6
 * (c) Jeroen Fiege <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Webcreate\Conveyor\Event;
13
14
final class TransporterEvents
15
{
16
    const TRANSPORTER_CONNECT     = 'transporter.connect';
17
    const TRANSPORTER_PUT         = 'transporter.put';
18
    const TRANSPORTER_PUT_CONTENT = 'transporter.put_content';
19
    const TRANSPORTER_GET         = 'transporter.get';
20
    const TRANSPORTER_MKDIR       = 'transporter.mkdir';
21
    const TRANSPORTER_SYMLINK     = 'transporter.symlink';
22
    const TRANSPORTER_COPY        = 'transporter.copy';
23
    const TRANSPORTER_REMOVE      = 'transporter.remove';
24
}
25