Skip to content

Commit

Permalink
Code style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Hunter Skrasek committed Aug 21, 2016
1 parent 84e9446 commit cc21964
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion tests/Routing/Adapter/LaravelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
use Illuminate\Events\Dispatcher;
use Illuminate\Container\Container;
use Dingo\Api\Routing\Adapter\Laravel;
use Illuminate\Routing\RouteCollection;

class LaravelTest extends BaseAdapterTest
{
Expand Down
4 changes: 2 additions & 2 deletions tests/Routing/RouteTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function testCreatingNewRoute()
'throttle' => 'Dingo\Api\Tests\Stubs\BasicThrottleStub',
'version' => ['v1'],
'conditionalRequest' => false,
'middleware' => 'foo.bar'
'middleware' => 'foo.bar',
],
]);

Expand Down Expand Up @@ -66,7 +66,7 @@ public function testControllerOptionsMergeAndOverrideRouteOptions()
'version' => ['v1'],
'conditionalRequest' => false,
'uses' => 'Dingo\Api\Tests\Stubs\RoutingControllerStub@index',
'middleware' => 'foo.bar'
'middleware' => 'foo.bar',
],
]);

Expand Down

0 comments on commit cc21964

Please sign in to comment.