summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Light <sam@lightscale.co.uk>2025-04-05 15:43:49 +0100
committerSam Light <samlight1994@gmail.com>2025-04-05 15:43:49 +0100
commitd0bea4c58ffe476c88b8c2ad2f1cba7c15b5b17e (patch)
tree53d7843da513e3c567cc25d17bef60813d696aec
parentab781894857497606328cc2962a7e679ad66c431 (diff)
Fix syntax errorv1.0.1
-rw-r--r--src/Assets.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Assets.php b/src/Assets.php
index 9fedc6e..758dae1 100644
--- a/src/Assets.php
+++ b/src/Assets.php
@@ -86,7 +86,7 @@ class Assets
{
$hash = $file->hash();
- if (!($this->queuedFileHashes[$hash] ?? false))
+ if (!($this->queuedFileHashes[$hash] ?? false)) {
$this->queuedFileHashes[$hash] = true;
$queue = $footer ? 'queuedFooterFiles' : 'queuedHeadFiles';
$this->{$queue}[] = $file;