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

BaseService::validateName()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 8
Code Lines 4

Duplication

Lines 8
Ratio 100 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 8
loc 8
rs 9.4285
cc 2
eloc 4
nc 2
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