mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-29 02:11:12 -06:00
17 lines
200 B
PHP
17 lines
200 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;
|
|
|
|
} |