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\DELETE;
4
5
6
use SugarAPI\SDK\EntryPoint\Abstracts\AbstractEntryPoint;
7
use SugarAPI\SDK\Request\DELETE;
8
9
abstract class JSONEntryPoint extends AbstractEntryPoint {
10
11
    /**
12
     * @inheritdoc
13
     */
14
    protected function setupRequest(){
15
        $this->Request = new DELETE();
16
    }
17
18
}