Skip to content

Commit e498cc9

Browse files
committed
Changed app class
1 parent 1782dd1 commit e498cc9

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.phpstan.neon

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
parameters:
22
ignoreErrors:
3+
- '#Access to an undefined property PHPPM\\Bootstraps\\Symfony::\$.*#'
4+

Bootstraps/Laravel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Laravel implements BootstrapInterface, HooksInterface, RequestClassProvide
2121
/**
2222
* Store the application
2323
*
24-
* @var \Symfony\Component\HttpKernel\HttpKernelInterface
24+
* @var \Illuminate\Foundation\Application;
2525
*/
2626
protected $app;
2727

Laravel/SessionGuard.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class SessionGuard extends \Illuminate\Auth\SessionGuard
2424
* @param \Illuminate\Contracts\Auth\UserProvider $provider
2525
* @param \Illuminate\Contracts\Session\Session $session
2626
* @param \Symfony\Component\HttpFoundation\Request $request
27-
* @param mixed|\Illuminate\Foundation\Application $app
27+
* @param \Illuminate\Foundation\Application $app
2828
* @return void
2929
*/
3030
public function __construct($name,

0 commit comments

Comments
 (0)