From 716c7fcd7eea058ded3a9df9e1a7f4a31f39a73c Mon Sep 17 00:00:00 2001 From: Lupacescu Eduard Date: Sun, 8 Mar 2020 19:08:26 +0000 Subject: [PATCH] Apply fixes from StyleCI --- tests/RepositoryWithRoutesTest.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/RepositoryWithRoutesTest.php b/tests/RepositoryWithRoutesTest.php index 2b70abd96..b433df6ae 100644 --- a/tests/RepositoryWithRoutesTest.php +++ b/tests/RepositoryWithRoutesTest.php @@ -29,7 +29,7 @@ protected function setUp(): void public function test_can_add_custom_routes() { - $this->get(Restify::path(RepositoryWithRoutes::uriKey()) . '/main-testing')->assertStatus(200) + $this->get(Restify::path(RepositoryWithRoutes::uriKey()).'/main-testing')->assertStatus(200) ->assertJson([ 'success' => true, ]); @@ -73,7 +73,6 @@ public function test_routes_default_wrapped() 'message' => 'From the sayHello method', ], ]); - } } @@ -159,7 +158,7 @@ class WithoutGroup extends RepositoryWithRoutes { public static function routes(Router $router, $options = [], $wrap = true) { - $router->get('default-options', '\\' . HandleController::class . '@sayHello')->name('no.group.default.options'); + $router->get('default-options', '\\'.HandleController::class.'@sayHello')->name('no.group.default.options'); } }