diff --git a/src/Commands/FixityCheck.php b/src/Commands/FixityCheck.php index 4952fb0..47b24da 100644 --- a/src/Commands/FixityCheck.php +++ b/src/Commands/FixityCheck.php @@ -50,7 +50,7 @@ class FixityCheck extends DrushCommands { /** @var \Drupal\dgi_fixity\FixityCheckStorageInterface $storage */ $storage = $this->entityTypeManager->getStorage('fixity_check'); $count = $storage->countPeriodic(); - if ($this->io()->confirm("This will remove periodic checks on ${count} files, are you sure?", FALSE)) { + if ($this->io()->confirm("This will remove periodic checks on {$count} files, are you sure?", FALSE)) { $storage->clearPeriodic(); } }