UserLogoutRequest::authorize()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
dl 0
loc 6
rs 9.4285
c 1
b 0
f 1
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
3
namespace App\Containers\Authentication\UI\API\Requests;
4
5
use App\Ship\Parents\Requests\Request;
6
7
/**
8
 * Class UserLogoutRequest.
9
 *
10
 * @author Mahmoud Zalt <[email protected]>
11
 */
12
class UserLogoutRequest extends Request
13
{
14
15
    /**
16
     * Define which Roles and/or Permissions has access to this request.
17
     *
18
     * @var  array
19
     */
20
    protected $access = [
21
        'permissions' => null
22
    ];
23
24
    /**
25
     * Id's that needs decoding before applying the validation rules.
26
     *
27
     * @var  array
28
     */
29
    protected $decode = [
30
31
    ];
32
33
    /**
34
     * Defining the URL parameters (`/stores/999/items`) allows applying
35
     * validation rules on them and allows accessing them like request data.
36
     *
37
     * @var  array
38
     */
39
    protected $urlParameters = [
40
41
    ];
42
43
    /**
44
     * Get the validation rules that apply to the request.
45
     *
46
     * @return array
47
     */
48
    public function rules()
49
    {
50
        return [
51
52
        ];
53
    }
54
55
    /**
56
     * Determine if the user is authorized to make this request.
57
     *
58
     * @return bool
59
     */
60
    public function authorize()
61
    {
62
        return $this->check([
63
            'hasAccess',
64
        ]);
65
    }
66
}
67