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

BaseService::validateEmail()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 9
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 9
rs 9.6666
c 1
b 0
f 0
cc 2
eloc 5
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