Completed
Push — master ( e6cd79...15515b )
by Mike
02:12
created

JSONEntryPoint   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A setupRequest() 0 3 1
1
<?php
2
3
namespace SugarAPI\SDK\EntryPoint\Abstracts\GET;
4
5
use SugarAPI\SDK\EntryPoint\Abstracts\AbstractEntryPoint;
6
use SugarAPI\SDK\Request\GET;
7
8
abstract class JSONEntryPoint extends AbstractEntryPoint {
9
10
    /**
11
     * @inheritdoc
12
     */
13
    protected function setupRequest(){
14
        $this->Request = new GET();
15
    }
16
17
}