-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConstant.php
More file actions
32 lines (26 loc) · 924 Bytes
/
Constant.php
File metadata and controls
32 lines (26 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
declare(strict_types=1);
/*
* This file is part of the dotfiles project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Dotfiles\Core;
class Constant
{
public const EVENT_BACKUP = 'dotfiles.backup';
public const EVENT_INSTALL = 'dotfiles.install';
public const EVENT_PATCH = 'dotfiles.patch';
public const EVENT_POST_INSTALL = 'dotfiles.post_install';
public const EVENT_POST_PATCH = 'dotfiles.post_patch';
public const EVENT_POST_RESTORE = 'dotfiles.post_restore';
public const EVENT_PRE_INSTALL = 'dotfiles.pre_install';
// patch events
public const EVENT_PRE_PATCH = 'dotfiles.pre_patch';
// restore events
public const EVENT_PRE_RESTORE = 'dotfiles.pre_restore';
public const EVENT_RESTORE = 'dotfiles.restore';
}