summaryrefslogtreecommitdiff
path: root/src/Module/State.php
blob: 040b91e9c44b4649fd5d1ddd64cb010e48ca62ac (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

namespace PHPIAC\Module;

class State
{
    public const PRESENT = 'present';
    public const ABSENT = 'absent';
    public const ENABLED = 'enabled';
    public const DISABLED = 'disabled';
}