Skip to content

Commit

Permalink
Cleanup CS styles
Browse files Browse the repository at this point in the history
  • Loading branch information
fsasvari committed Mar 20, 2023
1 parent b3f6aca commit 94a550e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/UrlGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ class UrlGenerator extends BaseUrlGenerator
/**
* Format the given URL segments into a single URL.
*
* @param string $root
* @param string $path
* @param string $root
* @param string $path
* @param \Illuminate\Routing\Route|null $route
*/
public function format($root, $path, $route = null): string
Expand Down
4 changes: 3 additions & 1 deletion tests/Unit/RoutingRedirectorTest.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
<?php

declare(strict_types=1);

namespace Illuminate\Tests\Routing;

use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\Routing\Redirector;
use LaravelTrailingSlash\UrlGenerator;
use Illuminate\Session\Store;
use LaravelTrailingSlash\UrlGenerator;
use Mockery as m;
use PHPUnit\Framework\TestCase;
use Symfony\Component\HttpFoundation\HeaderBag;
Expand Down
2 changes: 2 additions & 0 deletions tests/bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/*
|--------------------------------------------------------------------------
| Register The Composer Auto Loader
Expand Down

0 comments on commit 94a550e

Please sign in to comment.