File tree Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public function __construct()
29
29
public function handle (Authenticated $ event )
30
30
{
31
31
if (config ('LaravelLogger.logAllAuthEvents ' )) {
32
- ActivityLogger:: activity (trans ('LaravelLogger::laravel-logger.listenerTypes.auth ' ));
32
+ $ this -> activity (trans ('LaravelLogger::laravel-logger.listenerTypes.auth ' ));
33
33
}
34
34
}
35
35
}
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public function __construct()
29
29
public function handle (Attempting $ event )
30
30
{
31
31
if (config ('LaravelLogger.logAuthAttempts ' )) {
32
- ActivityLogger:: activity (trans ('LaravelLogger::laravel-logger.listenerTypes.attempt ' ));
32
+ $ this -> activity (trans ('LaravelLogger::laravel-logger.listenerTypes.attempt ' ));
33
33
}
34
34
}
35
35
}
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public function __construct()
29
29
public function handle (Failed $ event )
30
30
{
31
31
if (config ('LaravelLogger.logFailedAuthAttempts ' )) {
32
- ActivityLogger:: activity (trans ('LaravelLogger::laravel-logger.listenerTypes.failed ' ));
32
+ $ this -> activity (trans ('LaravelLogger::laravel-logger.listenerTypes.failed ' ));
33
33
}
34
34
}
35
35
}
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public function __construct()
29
29
public function handle (Lockout $ event )
30
30
{
31
31
if (config ('LaravelLogger.logLockOut ' )) {
32
- ActivityLogger:: activity (trans ('LaravelLogger::laravel-logger.listenerTypes.lockout ' ));
32
+ $ this -> activity (trans ('LaravelLogger::laravel-logger.listenerTypes.lockout ' ));
33
33
}
34
34
}
35
35
}
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public function __construct()
29
29
public function handle (PasswordReset $ event )
30
30
{
31
31
if (config ('LaravelLogger.logPasswordReset ' )) {
32
- ActivityLogger:: activity (trans ('LaravelLogger::laravel-logger.listenerTypes.reset ' ));
32
+ $ this -> activity (trans ('LaravelLogger::laravel-logger.listenerTypes.reset ' ));
33
33
}
34
34
}
35
35
}
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public function __construct()
29
29
public function handle (Login $ event )
30
30
{
31
31
if (config ('LaravelLogger.logSuccessfulLogin ' )) {
32
- ActivityLogger:: activity (trans ('LaravelLogger::laravel-logger.listenerTypes.login ' ));
32
+ $ this -> activity (trans ('LaravelLogger::laravel-logger.listenerTypes.login ' ));
33
33
}
34
34
}
35
35
}
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public function __construct()
29
29
public function handle (Logout $ event )
30
30
{
31
31
if (config ('LaravelLogger.logSuccessfulLogout ' )) {
32
- ActivityLogger:: activity (trans ('LaravelLogger::laravel-logger.listenerTypes.logout ' ));
32
+ $ this -> activity (trans ('LaravelLogger::laravel-logger.listenerTypes.logout ' ));
33
33
}
34
34
}
35
35
}
You can’t perform that action at this time.
0 commit comments