From c4d20a156098505cdef6dbf70727f85996652779 Mon Sep 17 00:00:00 2001 From: Luke Towers Date: Sun, 4 Sep 2022 13:24:33 -0600 Subject: [PATCH] Appeasing the mighty linter --- modules/system/console/MixInstall.php | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/modules/system/console/MixInstall.php b/modules/system/console/MixInstall.php index 16e613f45..1035c0ee0 100644 --- a/modules/system/console/MixInstall.php +++ b/modules/system/console/MixInstall.php @@ -171,13 +171,15 @@ class MixInstall extends Command && !in_array($packagePath, $ignoredPackages) ) { if ( - $this->confirm(sprintf( - "Detected %s (%s), should it be added to your package.json?", - $name, - $packagePath - ), - true - )) { + $this->confirm( + sprintf( + "Detected %s (%s), should it be added to your package.json?", + $name, + $packagePath + ), + true + ) + ) { $workspacesPackages[] = $packagePath; $this->info(sprintf( 'Adding %s (%s) to the workspaces.packages property in package.json',