2015-12-30 08:15:04 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
}
|