Completed
Push — master ( feb014...0d634a )
by Mauro
01:59
created

BaseService::getTaskRepository()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 6
rs 9.4285
cc 1
eloc 3
nc 1
nop 0
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