mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
17 lines
199 B
PHP
17 lines
199 B
PHP
|
<?php
|
||
|
|
||
|
namespace FireflyIII\Sql;
|
||
|
|
||
|
/**
|
||
|
* Class Query
|
||
|
*
|
||
|
* This class holds some useful static constants.
|
||
|
*
|
||
|
* @package FireflyIII\Sql
|
||
|
*/
|
||
|
class Query
|
||
|
{
|
||
|
const SPENT = 1;
|
||
|
const EARNED = 2;
|
||
|
|
||
|
}
|