mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 12:33:56 +00:00
15 lines
206 B
PHP
15 lines
206 B
PHP
<?php
|
|
|
|
namespace App\Classes\Modules\Accounts\Services;
|
|
|
|
class InvalidatesAuthenticationToken
|
|
{
|
|
|
|
/**
|
|
* @return false|string
|
|
*/
|
|
public function execute(){
|
|
auth()->logout();
|
|
}
|
|
|
|
} |