2015-12-30 08:15:04 +01:00
|
|
|
<?php
|
2016-02-05 12:08:25 +01:00
|
|
|
declare(strict_types = 1);
|
2015-12-30 08:15:04 +01:00
|
|
|
|
|
|
|
|
namespace FireflyIII\Sql;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Class Query
|
|
|
|
|
*
|
|
|
|
|
* This class holds some useful static constants.
|
|
|
|
|
*
|
|
|
|
|
* @package FireflyIII\Sql
|
|
|
|
|
*/
|
|
|
|
|
class Query
|
|
|
|
|
{
|
2016-01-01 12:41:00 +01:00
|
|
|
const SPENT = 1;
|
2015-12-30 08:15:04 +01:00
|
|
|
const EARNED = 2;
|
|
|
|
|
|
2016-01-09 08:20:55 +01:00
|
|
|
}
|