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

FileEntryPoint   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\POST;
4
5
use SugarAPI\SDK\Request\POSTFile;
6
use SugarAPI\SDK\EntryPoint\Abstracts\POST\JSONEntryPoint as POSTEntryPoint;
7
8
class FileEntryPoint extends POSTEntryPoint {
9
10
    protected function setupRequest() {
11
        $this->Request = new POSTFile();
12
    }
13
14
}