From bdc6b451d020df1c09a7cf127a1f1734af9986d5 Mon Sep 17 00:00:00 2001 From: willtp87 Date: Wed, 15 Nov 2023 09:29:09 -0400 Subject: [PATCH] D10-68: Handling ${var} deprecation. --- src/Commands/FixityCheck.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); } }