misuzu/src/Changelog/ChangelogChange.php

13 lines
320 B
PHP

<?php
namespace Misuzu\Changelog;
class ChangelogChange {
public const ACTION_UNKNOWN = 0;
public const ACTION_ADD = 1;
public const ACTION_REMOVE = 2;
public const ACTION_UPDATE = 3;
public const ACTION_FIX = 4;
public const ACTION_IMPORT = 5;
public const ACTION_REVERT = 6;
}