2015-12-30 01:15:04 -06:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace FireflyIII\Sql;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Query
|
|
|
|
*
|
|
|
|
* This class holds some useful static constants.
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Sql
|
|
|
|
*/
|
|
|
|
class Query
|
|
|
|
{
|
2016-01-01 05:41:00 -06:00
|
|
|
const SPENT = 1;
|
2015-12-30 01:15:04 -06:00
|
|
|
const EARNED = 2;
|
|
|
|
|
|
|
|
}
|