Skip to content

Commit

Permalink
chore: remove unecessary string
Browse files Browse the repository at this point in the history
Signed-off-by: Vitor Mattos <[email protected]>
  • Loading branch information
vitormattos committed Jul 23, 2024
1 parent 21dc283 commit 8cbe086
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Service/Install/SignSetupService.php
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ public function verify(string $architecture, $resource): array {
*/
private function getFolderIterator(string $folderToIterate): \RecursiveIteratorIterator {
if (!is_dir($folderToIterate)) {
throw new NotFoundException('No such directory ' . $folderToIterate);
throw new NotFoundException($folderToIterate);
}
$dirItr = new \RecursiveDirectoryIterator(
$folderToIterate,
Expand Down

0 comments on commit 8cbe086

Please sign in to comment.