Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
[ci skip] [skip ci]
  • Loading branch information
tomschlick authored and StyleCIBot committed Apr 6, 2019
1 parent 3c9b616 commit 6a93609
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/Linkable.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public function link() : string
* Link to a sub-item of the resource.
*
* @param string $key
* @param array $attr
* @param array $attr
*
* @return mixed
*/
Expand All @@ -41,7 +41,7 @@ public function redirect()
* Redirect to a sub-item of the resource.
*
* @param string $key
* @param array $attr
* @param array $attr
*
* @return \Illuminate\Http\RedirectResponse
*/
Expand Down
2 changes: 1 addition & 1 deletion tests/Fakes/Models/Post.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Post extends Model
* Link to a sub-item of the resource.
*
* @param string $key
* @param array $attr
* @param array $attr
*
* @return mixed
*/
Expand Down
1 change: 0 additions & 1 deletion tests/ModelTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?php


namespace TomSchlick\Linkable\Tests;

use Illuminate\Foundation\Testing\DatabaseTransactions;
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function assertHasRoute(string $name) : void
$routes = [];

/** @var \Illuminate\Routing\Route $route */
foreach(Route::getRoutes() as $route) {
foreach (Route::getRoutes() as $route) {
$routes[$route->getName()] = $route->getActionMethod();
}

Expand Down

0 comments on commit 6a93609

Please sign in to comment.