Code formatting.

This commit is contained in:
James Cole
2016-02-17 15:29:26 +01:00
parent b3e18f4e56
commit 52481a6e8b
19 changed files with 121 additions and 65 deletions

View File

@@ -62,14 +62,16 @@ class FromAccountContains implements TriggerInterface
return false;
}
/**
* Checks whether this trigger will match all transactions
* This happens when the trigger_value is empty
*
* @return bool
*/
public function matchesAnything() {
public function matchesAnything()
{
return $this->trigger->trigger_value === "";
}
}