Fixed labels, using templates for HTML fragments

This commit is contained in:
Franck Allimant
2014-05-02 12:07:17 +02:00
parent 5518c6f0bd
commit b776a36bbd
9 changed files with 150 additions and 195 deletions

View File

@@ -25,9 +25,9 @@ class SerializableCondition
public $conditionServiceId = null;
/** @var array Operators set by Admin for this Condition */
public $operators = array();
public $operators = [];
/** @var array Values set by Admin for this Condition */
public $values = array();
public $values = [];
}