mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-31 19:27:51 -06:00
18 lines
201 B
PHP
18 lines
201 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;
|
|
|
|
}
|