Completed
Push — master ( 857394...4794c5 )
by Mahmoud
03:25
created

CreatePaypalAccountRequest::rules()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace App\Containers\Paypal\UI\API\Requests;
4
5
use App\Port\Request\Abstracts\Request;
6
7
/**
8
 * Class CreatePaypalAccountRequest.
9
 *
10
 * @author Mahmoud Zalt <[email protected]>
11
 */
12
class CreatePaypalAccountRequest extends Request
13
{
14
15
    /**
16
     * Get the validation rules that apply to the request.
17
     *
18
     * @return array
19
     */
20
    public function rules()
21
    {
22
        return [
23
            // TODO: To Be Continue...
24
        ];
25
    }
26
27
    /**
28
     * Determine if the user is authorized to make this request.
29
     *
30
     * @return bool
31
     */
32
    public function authorize()
33
    {
34
        return true;
35
    }
36
}
37