mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-10 03:38:10 +00: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;
|
||
|
|
|
||
|
|
}
|