Completed
Push — master ( fd48c6...d6eea8 )
by Mike
02:42
created
src/Request/Interfaces/RequestInterface.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
      * @param $value - Header Value
24 24
      * @return SugarAPI\SDK\Request Object
25 25
      */
26
-    public function addHeader($name,$value);
26
+    public function addHeader($name, $value);
27 27
 
28 28
     /**
29 29
      * Sets the Headers on the Curl Request object, called during Sending. Appends to Request Headers property
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
      * @param $value - Curl Option Value
51 51
      * @return SugarAPI\SDK\Request Object
52 52
      */
53
-    public function setOption($option,$value);
53
+    public function setOption($option, $value);
54 54
 
55 55
     /**
56 56
      * Set the URL on the Request Object
Please login to merge, or discard this patch.
examples/Login.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-require_once __DIR__ . '/../vendor/autoload.php';
3
+require_once __DIR__.'/../vendor/autoload.php';
4 4
 
5
-$SugarAPI = new \SugarAPI\SDK\SugarAPI('instances.this/Ent/7621/',array('username' => 'admin','password'=>'asdf'));
5
+$SugarAPI = new \SugarAPI\SDK\SugarAPI('instances.this/Ent/7621/', array('username' => 'admin', 'password'=>'asdf'));
6 6
 $SugarAPI->login();
7 7
 print_r($SugarAPI->getToken());
8 8
\ No newline at end of file
Please login to merge, or discard this patch.
src/Request/Abstracts/AbstractRequest.php 4 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -133,6 +133,7 @@
 block discarded – undo
133 133
 
134 134
     /**
135 135
      * @inheritdoc
136
+     * @param string $body
136 137
      */
137 138
     public function setBody($body) {
138 139
         $this->body = $body;
Please login to merge, or discard this patch.
Upper-Lower-Casing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
      */
23 23
     protected static $_DEFAULT_OPTIONS = array(
24 24
         CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_0,
25
-        CURLOPT_HEADER => true,
25
+        CURLOPT_HEADER => TRUE,
26 26
         CURLOPT_SSL_VERIFYPEER => 0,
27 27
         CURLOPT_RETURNTRANSFER => 1,
28 28
         CURLOPT_FOLLOWLOCATION => 0
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     /**
68 68
      * @var null
69 69
      */
70
-    protected $status = null;
70
+    protected $status = NULL;
71 71
 
72 72
     /**
73 73
      * The Request Type
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
      */
76 76
     protected $type;
77 77
 
78
-    public function __construct($url = null){
78
+    public function __construct($url = NULL){
79 79
         $this->start();
80 80
         if (!empty($url)){
81 81
             $this->setURL($url);
Please login to merge, or discard this patch.
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
 
5 5
 use SugarAPI\SDK\Request\Interfaces\RequestInterface;
6 6
 
7
-abstract class AbstractRequest implements RequestInterface{
7
+abstract class AbstractRequest implements RequestInterface {
8 8
 
9 9
     const STATUS_INIT = 'initialized';
10 10
     const STATUS_SENT = 'sent';
@@ -81,31 +81,31 @@  discard block
 block discarded – undo
81 81
             $this->setURL($url);
82 82
         }
83 83
         $this->setType();
84
-        foreach(static::$_DEFAULT_OPTIONS as $option => $value){
85
-            $this->setOption($option,$value);
84
+        foreach (static::$_DEFAULT_OPTIONS as $option => $value){
85
+            $this->setOption($option, $value);
86 86
         }
87 87
     }
88 88
 
89 89
     /**
90 90
      * @inheritdoc
91 91
      */
92
-    public function setURL($url) {
92
+    public function setURL($url){
93 93
         $this->url = $url;
94
-        $this->setOption(CURLOPT_URL,$this->url);
94
+        $this->setOption(CURLOPT_URL, $this->url);
95 95
         return $this;
96 96
     }
97 97
 
98 98
     /**
99 99
      * @inheritdoc
100 100
      */
101
-    public function getURL() {
101
+    public function getURL(){
102 102
         return $this->url;
103 103
     }
104 104
 
105 105
     /**
106 106
      * @inheritdoc
107 107
      */
108
-    public function addHeader($name, $value) {
108
+    public function addHeader($name, $value){
109 109
         $token = $name.": ".$value;
110 110
         $this->headers[] = $token;
111 111
         return $this;
@@ -114,9 +114,9 @@  discard block
 block discarded – undo
114 114
     /**
115 115
      * @inheritdoc
116 116
      */
117
-    public function setHeaders(array $array = array()) {
118
-        if (count($array)>0) {
119
-            foreach ($array as $key => $value) {
117
+    public function setHeaders(array $array = array()){
118
+        if (count($array)>0){
119
+            foreach ($array as $key => $value){
120 120
                 $this->addHeader($key, $value);
121 121
             }
122 122
         }
@@ -127,14 +127,14 @@  discard block
 block discarded – undo
127 127
     /**
128 128
      * @inheritdoc
129 129
      */
130
-    public function getHeaders() {
130
+    public function getHeaders(){
131 131
         return $this->headers;
132 132
     }
133 133
 
134 134
     /**
135 135
      * @inheritdoc
136 136
      */
137
-    public function setBody($body) {
137
+    public function setBody($body){
138 138
         $this->body = $body;
139 139
         $this->setOption(CURLOPT_POSTFIELDS, $this->body);
140 140
         return $this;
@@ -143,28 +143,28 @@  discard block
 block discarded – undo
143 143
     /**
144 144
      * @inheritdoc
145 145
      */
146
-    public function getBody() {
146
+    public function getBody(){
147 147
         return $this->body;
148 148
     }
149 149
 
150 150
     /**
151 151
      * @inheritdoc
152 152
      */
153
-    public function getCurlObject() {
153
+    public function getCurlObject(){
154 154
         return $this->CurlRequest;
155 155
     }
156 156
 
157 157
     /**
158 158
      * @inheritdoc
159 159
      */
160
-    public function setOption($option, $value) {
160
+    public function setOption($option, $value){
161 161
         curl_setopt($this->CurlRequest, $option, $value);
162 162
     }
163 163
 
164 164
     /**
165 165
      * @inheritdoc
166 166
      */
167
-    public function send() {
167
+    public function send(){
168 168
         $this->setHeaders();
169 169
         $this->CurlResponse = curl_exec($this->CurlRequest);
170 170
         $this->status = self::STATUS_SENT;
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
     /**
200 200
      * @inheritdoc
201 201
      */
202
-    public function start() {
202
+    public function start(){
203 203
         $this->CurlRequest = curl_init();
204 204
         $this->status = self::STATUS_INIT;
205 205
         return $this;
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
     /**
219 219
      * @inheritdoc
220 220
      */
221
-    public function getCurlStatus() {
221
+    public function getCurlStatus(){
222 222
         return $this->status;
223 223
     }
224 224
 }
225 225
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
 
5 5
 use SugarAPI\SDK\Request\Interfaces\RequestInterface;
6 6
 
7
-abstract class AbstractRequest implements RequestInterface{
7
+abstract class AbstractRequest implements RequestInterface {
8 8
 
9 9
     const STATUS_INIT = 'initialized';
10 10
     const STATUS_SENT = 'sent';
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
     /**
90 90
      * @inheritdoc
91 91
      */
92
-    public function setURL($url) {
92
+    public function setURL($url){
93 93
         $this->url = $url;
94 94
         $this->setOption(CURLOPT_URL,$this->url);
95 95
         return $this;
@@ -98,14 +98,14 @@  discard block
 block discarded – undo
98 98
     /**
99 99
      * @inheritdoc
100 100
      */
101
-    public function getURL() {
101
+    public function getURL(){
102 102
         return $this->url;
103 103
     }
104 104
 
105 105
     /**
106 106
      * @inheritdoc
107 107
      */
108
-    public function addHeader($name, $value) {
108
+    public function addHeader($name, $value){
109 109
         $token = $name.": ".$value;
110 110
         $this->headers[] = $token;
111 111
         return $this;
@@ -114,9 +114,9 @@  discard block
 block discarded – undo
114 114
     /**
115 115
      * @inheritdoc
116 116
      */
117
-    public function setHeaders(array $array = array()) {
118
-        if (count($array)>0) {
119
-            foreach ($array as $key => $value) {
117
+    public function setHeaders(array $array = array()){
118
+        if (count($array)>0){
119
+            foreach ($array as $key => $value){
120 120
                 $this->addHeader($key, $value);
121 121
             }
122 122
         }
@@ -127,14 +127,14 @@  discard block
 block discarded – undo
127 127
     /**
128 128
      * @inheritdoc
129 129
      */
130
-    public function getHeaders() {
130
+    public function getHeaders(){
131 131
         return $this->headers;
132 132
     }
133 133
 
134 134
     /**
135 135
      * @inheritdoc
136 136
      */
137
-    public function setBody($body) {
137
+    public function setBody($body){
138 138
         $this->body = $body;
139 139
         $this->setOption(CURLOPT_POSTFIELDS, $this->body);
140 140
         return $this;
@@ -143,28 +143,28 @@  discard block
 block discarded – undo
143 143
     /**
144 144
      * @inheritdoc
145 145
      */
146
-    public function getBody() {
146
+    public function getBody(){
147 147
         return $this->body;
148 148
     }
149 149
 
150 150
     /**
151 151
      * @inheritdoc
152 152
      */
153
-    public function getCurlObject() {
153
+    public function getCurlObject(){
154 154
         return $this->CurlRequest;
155 155
     }
156 156
 
157 157
     /**
158 158
      * @inheritdoc
159 159
      */
160
-    public function setOption($option, $value) {
160
+    public function setOption($option, $value){
161 161
         curl_setopt($this->CurlRequest, $option, $value);
162 162
     }
163 163
 
164 164
     /**
165 165
      * @inheritdoc
166 166
      */
167
-    public function send() {
167
+    public function send(){
168 168
         $this->setHeaders();
169 169
         $this->CurlResponse = curl_exec($this->CurlRequest);
170 170
         $this->status = self::STATUS_SENT;
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
     /**
200 200
      * @inheritdoc
201 201
      */
202
-    public function start() {
202
+    public function start(){
203 203
         $this->CurlRequest = curl_init();
204 204
         $this->status = self::STATUS_INIT;
205 205
         return $this;
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
     /**
219 219
      * @inheritdoc
220 220
      */
221
-    public function getCurlStatus() {
221
+    public function getCurlStatus(){
222 222
         return $this->status;
223 223
     }
224 224
 }
225 225
\ No newline at end of file
Please login to merge, or discard this patch.
src/SugarAPI.php 4 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -68,6 +68,9 @@
 block discarded – undo
68 68
         }
69 69
     }
70 70
 
71
+    /**
72
+     * @param string $className
73
+     */
71 74
     public function registerEntryPoint($funcName,$className){
72 75
         if (isset($this->entryPoints[$funcName])){
73 76
             throw new SDKException('SDK method already defined. Method '.$funcName.' references Class '.$className);
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace SugarAPI\SDK;
4 4
 
5
-use SugarAPI\SDK\Exception\InitializationFailure;
6
-use SugarAPI\SDK\Exception\InvalidEntryPoint;
7 5
 use SugarAPI\SDK\Exception\AuthenticationException;
8 6
 use SugarAPI\SDK\Exception\SDKException;
9 7
 
Please login to merge, or discard this patch.
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 
29 29
     private $entryPoints = array();
30 30
 
31
-    public function __construct($instance='',array $authOptions = array()){
31
+    public function __construct($instance = '', array $authOptions = array()){
32 32
         $this->loadDefaults();
33 33
         if (!empty($instance)){
34 34
             $this->setInstance($instance);
@@ -40,8 +40,8 @@  discard block
 block discarded – undo
40 40
     }
41 41
 
42 42
     protected function loadDefaults(){
43
-        include __DIR__ .DIRECTORY_SEPARATOR.'defaults.php';
44
-        if (isset($defaults)) {
43
+        include __DIR__.DIRECTORY_SEPARATOR.'defaults.php';
44
+        if (isset($defaults)){
45 45
             static::$_DEFAULTS = $defaults;
46 46
             if (isset($defaults['instance'])){
47 47
                 $this->setInstance($defaults['instance']);
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     }
54 54
 
55 55
     public function setAuthOptions(array $options){
56
-        foreach($this->authOptions as $key => $value){
56
+        foreach ($this->authOptions as $key => $value){
57 57
             if (isset($options[$key])){
58 58
                 $this->authOptions[$key] = $options[$key];
59 59
             }
@@ -61,27 +61,27 @@  discard block
 block discarded – undo
61 61
     }
62 62
 
63 63
     protected function registerSDKEntryPoints(){
64
-        require __DIR__ .DIRECTORY_SEPARATOR.'EntryPoint' .DIRECTORY_SEPARATOR.'registry.php';
65
-        foreach($entryPoints as $funcName => $className){
64
+        require __DIR__.DIRECTORY_SEPARATOR.'EntryPoint'.DIRECTORY_SEPARATOR.'registry.php';
65
+        foreach ($entryPoints as $funcName => $className){
66 66
             $className = "SugarAPI\\SDK\\EntryPoint\\".$className;
67
-            $this->registerEntryPoint($funcName,$className);
67
+            $this->registerEntryPoint($funcName, $className);
68 68
         }
69 69
     }
70 70
 
71
-    public function registerEntryPoint($funcName,$className){
71
+    public function registerEntryPoint($funcName, $className){
72 72
         if (isset($this->entryPoints[$funcName])){
73 73
             throw new SDKException('SDK method already defined. Method '.$funcName.' references Class '.$className);
74 74
         }
75 75
         $this->entryPoints[$funcName] = $className;
76 76
     }
77 77
 
78
-    public function __call($name,$params){
79
-        if (array_key_exists($name,$this->entryPoints)){
78
+    public function __call($name, $params){
79
+        if (array_key_exists($name, $this->entryPoints)){
80 80
             $Class = $this->entryPoints[$name];
81
-            $EntryPoint = new $Class($this->url,$params);
81
+            $EntryPoint = new $Class($this->url, $params);
82 82
 
83 83
             if ($EntryPoint->authRequired()){
84
-                if (isset($this->authToken)) {
84
+                if (isset($this->authToken)){
85 85
                     $EntryPoint->configureAuth($this->authToken->access_token);
86 86
                 }else{
87 87
                     throw new AuthenticationException('no_auth');
@@ -105,17 +105,17 @@  discard block
 block discarded – undo
105 105
         }
106 106
     }
107 107
     public function setInstance($instance){
108
-        if (strpos("https",$instance)!==FALSE){
108
+        if (strpos("https", $instance)!==FALSE){
109 109
             $this->secure = TRUE;
110 110
         }
111
-        if (strpos("http",$instance)===FALSE){
111
+        if (strpos("http", $instance)===FALSE){
112 112
             $instance = "http://".$instance;
113 113
         }
114
-        if (strpos("rest/v10",$instance)!==FALSE){
115
-            $instance = str_replace("rest/v10","",$instance);
114
+        if (strpos("rest/v10", $instance)!==FALSE){
115
+            $instance = str_replace("rest/v10", "", $instance);
116 116
         }
117 117
         $this->instance = $instance;
118
-        $this->url = rtrim($this->instance,"/").self::API_URL;
118
+        $this->url = rtrim($this->instance, "/").self::API_URL;
119 119
     }
120 120
     public function getURL(){
121 121
         return $this->url;
Please login to merge, or discard this patch.
Braces   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 
42 42
     protected function loadDefaults(){
43 43
         include __DIR__ .DIRECTORY_SEPARATOR.'defaults.php';
44
-        if (isset($defaults)) {
44
+        if (isset($defaults)){
45 45
             static::$_DEFAULTS = $defaults;
46 46
             if (isset($defaults['instance'])){
47 47
                 $this->setInstance($defaults['instance']);
@@ -81,14 +81,14 @@  discard block
 block discarded – undo
81 81
             $EntryPoint = new $Class($this->url,$params);
82 82
 
83 83
             if ($EntryPoint->authRequired()){
84
-                if (isset($this->authToken)) {
84
+                if (isset($this->authToken)){
85 85
                     $EntryPoint->configureAuth($this->authToken->access_token);
86
-                }else{
86
+                } else{
87 87
                     throw new AuthenticationException('no_auth');
88 88
                 }
89 89
             }
90 90
             return $EntryPoint;
91
-        }else{
91
+        } else{
92 92
             throw new SDKException('Method '.$name.', is not a registered method of the SugarAPI SDK');
93 93
         }
94 94
     }
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
         $response = $EP->data($this->authOptions)->execute()->getResponse();
101 101
         if ($response->getStatus()=='200'){
102 102
             $this->authToken = $response->getBody();
103
-        }else{
103
+        } else{
104 104
             throw new AuthenticationException($response->getBody());
105 105
         }
106 106
     }
Please login to merge, or discard this patch.
src/EntryPoint/GET/RecordFileField.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use SugarAPI\SDK\EntryPoint\Abstracts\GET\FileEntryPoint as GETFileEntryPoint;
6 6
 
7
-class RecordFileField extends GETFileEntryPoint{
7
+class RecordFileField extends GETFileEntryPoint {
8 8
 
9 9
     protected $_URL = '$module/$record/file/$field';
10 10
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use SugarAPI\SDK\EntryPoint\Abstracts\GET\FileEntryPoint as GETFileEntryPoint;
6 6
 
7
-class RecordFileField extends GETFileEntryPoint{
7
+class RecordFileField extends GETFileEntryPoint {
8 8
 
9 9
     /**
10 10
      * @inheritdoc
Please login to merge, or discard this patch.
src/EntryPoint/POST/CreateRecord.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use SugarAPI\SDK\EntryPoint\Abstracts\POST\JSONEntryPoint as POSTEntryPoint;
6 6
 
7
-class CreateRecord extends POSTEntryPoint{
7
+class CreateRecord extends POSTEntryPoint {
8 8
 
9 9
     protected $_URL = '$module';
10 10
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use SugarAPI\SDK\EntryPoint\Abstracts\POST\JSONEntryPoint as POSTEntryPoint;
6 6
 
7
-class CreateRecord extends POSTEntryPoint{
7
+class CreateRecord extends POSTEntryPoint {
8 8
 
9 9
     protected $_URL = '$module';
10 10
 
Please login to merge, or discard this patch.
examples/FavoriteRecord.php 2 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 
13 13
     print_r($response);
14 14
 
15
-}catch(\SugarAPI\SDK\Exception\AuthenticationException $ex){
15
+} catch(\SugarAPI\SDK\Exception\AuthenticationException $ex){
16 16
     print $ex->getMessage();
17 17
 }
18 18
 
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,18 +1,18 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-require_once __DIR__ . '/../vendor/autoload.php';
3
+require_once __DIR__.'/../vendor/autoload.php';
4 4
 
5 5
 $record_id = 'a887c75b-b89a-852e-8e67-56f1ccdee355';
6 6
 
7 7
 try{
8
-    $SugarAPI = new \SugarAPI\SDK\SugarAPI('localhost/ent77',array('username' => 'admin','password'=>'admin123'));
8
+    $SugarAPI = new \SugarAPI\SDK\SugarAPI('localhost/ent77', array('username' => 'admin', 'password'=>'admin123'));
9 9
     $SugarAPI->login();
10
-    $EP = $SugarAPI->favorite('Accounts',$record_id);
10
+    $EP = $SugarAPI->favorite('Accounts', $record_id);
11 11
     $response = $EP->execute()->getResponse()->getBody();
12 12
 
13 13
     print_r($response);
14 14
 
15
-}catch(\SugarAPI\SDK\Exception\AuthenticationException $ex){
15
+}catch (\SugarAPI\SDK\Exception\AuthenticationException $ex){
16 16
     print $ex->getMessage();
17 17
 }
18 18
 
Please login to merge, or discard this patch.
examples/UploadFile.php 2 patches
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,18 +21,18 @@
 block discarded – undo
21 21
         if ($response->getStatus()=='200'){
22 22
             $record = $response->getBody();
23 23
             print_r($response);
24
-        }else{
24
+        } else{
25 25
             print_r($upload->getRequest());
26 26
             echo "Failed to Update Note with File<br>";
27 27
             echo "Response: ".$response->getStatus()."<br>";
28 28
             print_r($response->getBody());
29 29
         }
30
-    }else{
30
+    } else{
31 31
         echo "Failed to create Note<br>";
32 32
         echo "Response: ".$response->getStatus()."<br>";
33 33
         print_r($response->getBody());
34 34
     }
35 35
 
36
-}catch(\SugarAPI\SDK\Exception\SDKException $ex){
36
+} catch(\SugarAPI\SDK\Exception\SDKException $ex){
37 37
     print $ex->getMessage();
38 38
 }
39 39
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,16 +1,16 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-require_once __DIR__ . '/../vendor/autoload.php';
3
+require_once __DIR__.'/../vendor/autoload.php';
4 4
 
5 5
 try{
6
-    $SugarAPI = new \SugarAPI\SDK\SugarAPI('instances.this/Ent/7700/',array('username' => 'admin','password'=>'asdf'));
6
+    $SugarAPI = new \SugarAPI\SDK\SugarAPI('instances.this/Ent/7700/', array('username' => 'admin', 'password'=>'asdf'));
7 7
     $SugarAPI->login();
8 8
     $EP = $SugarAPI->createRecord('Notes')->data(array('name' => 'Test Note'))->execute();
9 9
     $response = $EP->getResponse();
10 10
     if ($response->getStatus()=='200'){
11 11
         $record = $response->getBody();
12 12
 
13
-        $upload = $SugarAPI->attachFile('Notes',$record->id,'filename')->data(__DIR__.'/testfile.txt;filename=testfile.txt')->execute();
13
+        $upload = $SugarAPI->attachFile('Notes', $record->id, 'filename')->data(__DIR__.'/testfile.txt;filename=testfile.txt')->execute();
14 14
         $response = $upload->getResponse();
15 15
         if ($response->getStatus()=='200'){
16 16
             $record = $response->getBody();
@@ -27,6 +27,6 @@  discard block
 block discarded – undo
27 27
         print_r($response->getBody());
28 28
     }
29 29
 
30
-}catch(\SugarAPI\SDK\Exception\SDKException $ex){
30
+}catch (\SugarAPI\SDK\Exception\SDKException $ex){
31 31
     print $ex->getMessage();
32 32
 }
33 33
\ No newline at end of file
Please login to merge, or discard this patch.
examples/CRUD.php 3 patches
Braces   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -39,31 +39,31 @@
 block discarded – undo
39 39
                     $response = $deleteRecord->getResponse()->getBody();
40 40
                     echo "Deleted Record <br>";
41 41
                     print_r($response);
42
-                }else{
42
+                } else{
43 43
                     echo "Failed to Delete record<br>";
44 44
                     echo "Response: ".$response->getStatus()."<br>";
45 45
                     print_r($response->getBody());
46 46
                 }
47
-            }else{
47
+            } else{
48 48
                 print_r($updateRecord->getRequest());
49 49
                 echo "Failed to Update record<br>";
50 50
                 echo "Response: ".$response->getStatus()."<br>";
51 51
                 print_r($response->getBody());
52 52
             }
53
-        }else{
53
+        } else{
54 54
             echo "Failed to retrieve record<br>";
55 55
             echo "Response: ".$response->getStatus()."<br>";
56 56
             print_r($response->getBody());
57 57
         }
58
-    }else{
58
+    } else{
59 59
         echo "Response: ".$response->getStatus();
60 60
         print_r($response->getBody());
61 61
     }
62
-}catch(\SugarAPI\SDK\Exception\AuthenticationException $ex){
62
+} catch(\SugarAPI\SDK\Exception\AuthenticationException $ex){
63 63
     echo "Auth Options:<pre>";
64 64
     print_r($SugarAPI->getAuthOptions());
65 65
     echo "</pre> Error Message: ";
66 66
     print $ex->getMessage();
67
-}catch(\SugarAPI\SDK\Exception\SDKException $ex){
67
+} catch(\SugarAPI\SDK\Exception\SDKException $ex){
68 68
     echo $ex->__toString();
69 69
 }
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
     if ($response->getStatus()=='200'){
12 12
         $recordList = $response->getBody();
13 13
         $max=count($recordList->records);
14
-        echo "Found $max records from Filter Records request. <br>";
14
+        echo "found $max records from Filter Records request. <br>";
15 15
         $number = rand(0,$max);
16 16
         $randomRecord = $recordList->records[$number];
17 17
         echo "Choose random record #$number, with ID: ".$randomRecord->id." <br>";
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1,22 +1,22 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 
4
-require_once __DIR__ . '/../vendor/autoload.php';
4
+require_once __DIR__.'/../vendor/autoload.php';
5 5
 
6 6
 try{
7
-    $SugarAPI = new \SugarAPI\SDK\SugarAPI('instances.this/Pro/7700/',array('username' => 'admin','password'=>'asdf'));
7
+    $SugarAPI = new \SugarAPI\SDK\SugarAPI('instances.this/Pro/7700/', array('username' => 'admin', 'password'=>'asdf'));
8 8
     $SugarAPI->login();
9 9
     $EP = $SugarAPI->filterRecords('Accounts');
10 10
     $response = $EP->execute()->getResponse();
11 11
     if ($response->getStatus()=='200'){
12 12
         $recordList = $response->getBody();
13
-        $max=count($recordList->records);
13
+        $max = count($recordList->records);
14 14
         echo "Found $max records from Filter Records request. <br>";
15
-        $number = rand(0,$max);
15
+        $number = rand(0, $max);
16 16
         $randomRecord = $recordList->records[$number];
17 17
         echo "Choose random record #$number, with ID: ".$randomRecord->id." <br>";
18 18
 
19
-        $getRecord = $SugarAPI->getRecord('Accounts',$randomRecord->id)->data(array(
19
+        $getRecord = $SugarAPI->getRecord('Accounts', $randomRecord->id)->data(array(
20 20
             'fields' => 'name'
21 21
         ))->execute();
22 22
         $response = $getRecord->getResponse();
@@ -24,14 +24,14 @@  discard block
 block discarded – undo
24 24
             echo "Retrieved Record <br>";
25 25
             $randomRecord = $getRecord->getResponse()->getBody();
26 26
             $randomRecord->name = 'Updated Record Name';
27
-            $updateRecord = $SugarAPI->updateRecord('Accounts',$randomRecord->id)->data($randomRecord)->execute();
27
+            $updateRecord = $SugarAPI->updateRecord('Accounts', $randomRecord->id)->data($randomRecord)->execute();
28 28
             $response = $updateRecord->getResponse();
29 29
             if ($response->getStatus()=='200'){
30 30
                 $randomRecord = $updateRecord->getResponse()->getBody();
31 31
                 echo "Updated Record <br>";
32 32
                 print_r($randomRecord);
33 33
 
34
-                $deleteRecord = $SugarAPI->deleteRecord('Accounts',$randomRecord->id)->execute();
34
+                $deleteRecord = $SugarAPI->deleteRecord('Accounts', $randomRecord->id)->execute();
35 35
                 $response = $deleteRecord->getResponse();
36 36
                 if ($response->getStatus()=='200'){
37 37
                     $response = $deleteRecord->getResponse()->getBody();
@@ -57,11 +57,11 @@  discard block
 block discarded – undo
57 57
         echo "Response: ".$response->getStatus();
58 58
         print_r($response->getBody());
59 59
     }
60
-}catch(\SugarAPI\SDK\Exception\AuthenticationException $ex){
60
+}catch (\SugarAPI\SDK\Exception\AuthenticationException $ex){
61 61
     echo "Auth Options:<pre>";
62 62
     print_r($SugarAPI->getAuthOptions());
63 63
     echo "</pre> Error Message: ";
64 64
     print $ex->getMessage();
65
-}catch(\SugarAPI\SDK\Exception\SDKException $ex){
65
+}catch (\SugarAPI\SDK\Exception\SDKException $ex){
66 66
     echo $ex->__toString();
67 67
 }
Please login to merge, or discard this patch.