Skip to content

Commit 159a131

Browse files
inmanturboactions-user
authored andcommitted
Fix styling
1 parent 0c4bb92 commit 159a131

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Http/Controllers/LegacyController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ public function __invoke(Request $request, $file)
2424

2525
$file = base_path(config('legacy-loader.file_path') . $this->getCleanPath($request->path()));
2626

27-
if (!str_contains($request->path(), '.php')) {
27+
if (! str_contains($request->path(), '.php')) {
2828
$file = str_replace(['.html', '.php', '.txt'], '', $file) . '.php';
2929
}
3030
if (file_exists($file)) {
3131
// ob_start();
3232
require_once($file);
3333

34-
// return new Response(ob_get_clean());
34+
// return new Response(ob_get_clean());
3535
} else {
3636

3737
/**

0 commit comments

Comments
 (0)