Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-code-labx authored and github-actions[bot] committed May 13, 2024
1 parent 151bb8b commit c4fb2e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Support/XtendRouter.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ public function __construct(Dispatcher $events, ?Container $container = null)
parent::__construct($events, $container);

$filesystem = app(Filesystem::class);
if (!$filesystem->isDirectory(app_path('Api'))) {
if (! $filesystem->isDirectory(app_path('Api'))) {
return;
}
if (!app()->runningUnitTests()) {
if (! app()->runningUnitTests()) {
return;
}
$filesystem->deleteDirectory(app_path('Api'));
Expand Down

0 comments on commit c4fb2e7

Please sign in to comment.