Updates to budgets.

This commit is contained in:
James Cole
2016-04-28 10:59:36 +02:00
parent 19d7e27fa9
commit b47a140c2f
20 changed files with 510 additions and 182 deletions

View File

@@ -141,5 +141,13 @@ class BillLine
$this->hit = $hit;
}
/**
* @return bool
*/
public function isHitAndActive():bool
{
return $this->hit && $this->active;
}
}