Skip to content

Commit 368b774

Browse files
committed
Update coding standard
1 parent 17cac05 commit 368b774

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/RouteCollectionTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ public function testResourceWithExcept() : void
174174
public function testPresenter() : void
175175
{
176176
self::assertSame([], $this->collection->routes);
177-
$this->collection->presenter('/admin/posts', 'Admin\\Posts', 'admin.posts');
177+
$this->collection->presenter('/admin/posts', 'Admin\Posts', 'admin.posts');
178178
self::assertSame([
179179
'GET',
180180
'POST',
@@ -192,7 +192,7 @@ public function testPresenter() : void
192192
public function testPresenterWithExcept() : void
193193
{
194194
self::assertSame([], $this->collection->routes);
195-
$this->collection->presenter('/admin/posts', 'Admin\\Posts', 'admin.posts', [
195+
$this->collection->presenter('/admin/posts', 'Admin\Posts', 'admin.posts', [
196196
'create',
197197
'update',
198198
'delete',

tests/RouteTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ public function testRunWithClassActionMethodNotExists() : void
191191
);
192192
$this->expectException(RoutingException::class);
193193
$this->expectExceptionMessage(
194-
'Class action method not exists: Tests\\Routing\\Support\\WithRouteActions::foo'
194+
'Class action method not exists: Tests\Routing\Support\WithRouteActions::foo'
195195
);
196196
$route->run();
197197
}

0 commit comments

Comments
 (0)