File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 5
5
use Illuminate \Contracts \Auth \UserProvider ;
6
6
use Illuminate \Foundation \Application ;
7
7
use Symfony \Component \HttpFoundation \Request ;
8
- use Symfony \ Component \ HttpFoundation \ Session \SessionInterface ;
8
+ use Illuminate \ Contracts \ Session \Session ;
9
9
10
10
class SessionGuard extends \Illuminate \Auth \SessionGuard
11
11
{
@@ -21,15 +21,15 @@ class SessionGuard extends \Illuminate\Auth\SessionGuard
21
21
* Create a new authentication guard.
22
22
*
23
23
* @param string $name
24
- * @param \Illuminate\Contracts\Auth\UserProvider $provider
25
- * @param \Symfony\Component\HttpFoundation\ Session\SessionInterface $session
26
- * @param \Symfony\Component\HttpFoundation\Request $request
27
- * @param mixed|\Illuminate\Foundation\Application $app
24
+ * @param \Illuminate\Contracts\Auth\UserProvider $provider
25
+ * @param \Illuminate\Contracts\ Session\Session $session
26
+ * @param \Symfony\Component\HttpFoundation\Request $request
27
+ * @param mixed|\Illuminate\Foundation\Application $app
28
28
* @return void
29
29
*/
30
30
public function __construct ($ name ,
31
31
UserProvider $ provider ,
32
- SessionInterface $ session ,
32
+ Session $ session ,
33
33
Request $ request = null ,
34
34
Application $ app )
35
35
{
You can’t perform that action at this time.
0 commit comments