Skip to content

Commit

Permalink
Commit from GitHub Actions (style-fix)
Browse files Browse the repository at this point in the history
  • Loading branch information
cesargb committed Nov 13, 2024
1 parent 4337454 commit af081f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Middlewares/MagiclinkMiddleware.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class MagiclinkMiddleware
{
public function handle(Request $request, Closure $next)
{
if($request->method() === 'HEAD') {
if ($request->method() === 'HEAD') {
return $next($request);
}

Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ protected function defineEnvironment($app)

$driver = getenv('DB_DRIVER');

if($driver !== 'pgsql' && $driver !== 'mysql') {
if ($driver !== 'pgsql' && $driver !== 'mysql') {
$app['config']->set('database.default', 'testbench');
} else {
$app['config']->set('database.default', $driver);
Expand Down

0 comments on commit af081f6

Please sign in to comment.