Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / statistics / src / NodeStatisticsDatabaseStorage.php
index 0cccb1700b61238d46d8a9cb30bc14eb9b3917a4..dcb69833e866269e67218ce10aaf86013f3a920d 100644 (file)
@@ -131,7 +131,7 @@ class NodeStatisticsDatabaseStorage implements StatisticsStorageInterface {
   public function maxTotalCount() {
     $query = $this->connection->select('node_counter', 'nc');
     $query->addExpression('MAX(totalcount)');
-    $max_total_count = (int)$query->execute()->fetchField();
+    $max_total_count = (int) $query->execute()->fetchField();
     return $max_total_count;
   }