This repository has been archived by the owner on Jul 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add homestead as dev-dependency and add kernel stub for HTTP tests
- Loading branch information
Felix Huber
committed
Jun 6, 2019
1 parent
4088f0d
commit 0867c25
Showing
4 changed files
with
47 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
|
||
|
||
namespace Herpaderpaldent\Seat\SeatGroups\Test\Stubs; | ||
|
||
|
||
use Orchestra\Testbench\Http\Middleware\RedirectIfAuthenticated; | ||
use Seat\Web\Http\Middleware\Authenticate; | ||
|
||
class Kernel extends \Orchestra\Testbench\Http\Kernel | ||
{ | ||
|
||
/** | ||
* The application's route middleware. | ||
* | ||
* These middleware may be assigned to groups or used individually. | ||
* | ||
* @var array | ||
*/ | ||
protected $routeMiddleware = [ | ||
'auth' => Authenticate::class, | ||
'guest' => RedirectIfAuthenticated::class, | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters