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

JSONEntryPoint   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
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 7
rs 10

1 Method

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