Completed
Push — master ( 4c5f95...615c30 )
by Mahmoud
04:04
created

CreateStripeAccountRequest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 26
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
c 1
b 0
f 0
lcom 0
cbo 1
dl 0
loc 26
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A rules() 0 7 1
A authorize() 0 4 1
1
<?php
2
3
namespace App\Containers\Stripe\UI\API\Requests;
4
5
use App\Port\Request\Abstracts\Request;
6
7
/**
8
 * Class CreateStripeAccountRequest.
9
 *
10
 * @author Mahmoud Zalt <[email protected]>
11
 */
12
class CreateStripeAccountRequest 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
            'customer_id' => 'required|min:3',
24
            'card_id'     => 'required|min:3',
25
        ];
26
    }
27
28
    /**
29
     * Determine if the user is authorized to make this request.
30
     *
31
     * @return bool
32
     */
33
    public function authorize()
34
    {
35
        return true;
36
    }
37
}
38