firefly-iii/app/Enums/ClauseType.php

13 lines
211 B
PHP
Raw Normal View History

2021-08-10 11:43:21 -05:00
<?php
namespace FireflyIII\Enums;
/**
* Class ClauseType
*/
class ClauseType
{
public const TRANSACTION = 'transaction';
public const WHERE = 'where';
public const UPDATE = 'update';
}