Passed
Push — master ( f5817c...637aa7 )
by Mauro
02:29
created

BaseService::validateInputOnCreateTask()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 13
Code Lines 8

Duplication

Lines 13
Ratio 100 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 13
loc 13
rs 9.4285
cc 3
eloc 8
nc 3
nop 1
1
<?php
2
3
namespace App\Service;
4
5
/**
6
 * Base Service.
7
 */
8
abstract class BaseService
9
{
10
    protected $database;
11
12
    protected $request;
13
14
    protected $response;
15
16
    protected $args;
17
}
18