LogoutJob::handle()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
dl 0
loc 4
rs 10
c 2
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
1
<?php namespace Cerbero\Auth\Jobs;
2
3
use Illuminate\Contracts\Auth\Guard;
4
use Illuminate\Contracts\Bus\SelfHandling;
5
6
class LogoutJob implements SelfHandling {
7
8
	/**
9
	 * Execute the job.
10
	 *
11
	 * @return void
12
	 */
13
	public function handle(Guard $auth)
14
	{
15
		$auth->logout();
16
	}
17
18
}
19