diff --git a/plugins/system/debug/src/AbstractDataCollector.php b/plugins/system/debug/src/AbstractDataCollector.php index c11539616c84e..c572ee97f2f32 100644 --- a/plugins/system/debug/src/AbstractDataCollector.php +++ b/plugins/system/debug/src/AbstractDataCollector.php @@ -56,12 +56,12 @@ public function __construct(Registry $params) */ public function getDataFormatter(): DataFormatter { - if ($this->dataFormater === null) + if ($this->dataFormatter === null) { - $this->dataFormater = self::getDefaultDataFormatter(); + $this->dataFormatter = self::getDefaultDataFormatter(); } - return $this->dataFormater; + return $this->dataFormatter; } /**