Implemented tests for condition

This commit is contained in:
Kevin Frantz
2018-11-06 20:56:54 +01:00
parent f89d20d365
commit a3d10ac9af
3 changed files with 50 additions and 2 deletions

View File

@@ -26,6 +26,6 @@ trait ConditionAttribut
public function hasCondition(): bool
{
return $this->condition;
return $this->condition instanceof OperationInterface;
}
}