This commit is contained in:
2019-06-05 10:14:16 +02:00
parent 5359a608c1
commit f1de0abfda

View File

@@ -97,7 +97,7 @@ class DataCollector implements DataCollectorInterface
*/ */
public function hasData(): bool public function hasData(): bool
{ {
return sizeof($this->data) > o ? true : false; return sizeof($this->data) > 0 ? true : false;
} }