@@ -71,15 +71,15 @@ discard block |
||
| 71 | 71 | public function validate() |
| 72 | 72 | { |
| 73 | 73 | if (empty($this->type)) { |
| 74 | - throw new LPTrackerSDKException('Detail type can not be null: ' . $this->__toString()); |
|
| 74 | + throw new LPTrackerSDKException('Detail type can not be null: '.$this->__toString()); |
|
| 75 | 75 | } |
| 76 | 76 | |
| 77 | - if (!in_array($this->type, self::getAllTypes(), true)) { |
|
| 78 | - throw new LPTrackerSDKException('Detail type not in (' . implode(',', self::getAllTypes()) . '): ' . $this->__toString()); |
|
| 77 | + if ( ! in_array($this->type, self::getAllTypes(), true)) { |
|
| 78 | + throw new LPTrackerSDKException('Detail type not in ('.implode(',', self::getAllTypes()).'): '.$this->__toString()); |
|
| 79 | 79 | } |
| 80 | 80 | |
| 81 | 81 | if (empty($this->data)) { |
| 82 | - throw new LPTrackerSDKException('Detail data can not be null: ' . $this->__toString()); |
|
| 82 | + throw new LPTrackerSDKException('Detail data can not be null: '.$this->__toString()); |
|
| 83 | 83 | } |
| 84 | 84 | |
| 85 | 85 | return true; |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | 'data' => $this->data, |
| 96 | 96 | ]; |
| 97 | 97 | |
| 98 | - if (!empty($this->id)) { |
|
| 98 | + if ( ! empty($this->id)) { |
|
| 99 | 99 | $result['id'] = $this->getId(); |
| 100 | 100 | } |
| 101 | 101 | return $result; |
@@ -28,20 +28,20 @@ discard block |
||
| 28 | 28 | |
| 29 | 29 | public function __construct(array $commentData = []) |
| 30 | 30 | { |
| 31 | - if (!empty($commentData['id'])) { |
|
| 31 | + if ( ! empty($commentData['id'])) { |
|
| 32 | 32 | $this->id = (int) $commentData['id']; |
| 33 | 33 | } |
| 34 | - if (!empty($commentData['text'])) { |
|
| 34 | + if ( ! empty($commentData['text'])) { |
|
| 35 | 35 | $this->text = $commentData['text']; |
| 36 | 36 | } |
| 37 | - if (!empty($commentData['author'])) { |
|
| 37 | + if ( ! empty($commentData['author'])) { |
|
| 38 | 38 | if ($commentData['author']['type'] === 'main') { |
| 39 | 39 | $this->ownerId = 0; |
| 40 | 40 | } else { |
| 41 | 41 | $this->ownerId = (int) $commentData['author']['id']; |
| 42 | 42 | } |
| 43 | 43 | } |
| 44 | - if (!empty($commentData['created_at'])) { |
|
| 44 | + if ( ! empty($commentData['created_at'])) { |
|
| 45 | 45 | $this->setCreatedAt($commentData['created_at']); |
| 46 | 46 | } |
| 47 | 47 | } |
@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | */ |
| 121 | 121 | public function setCreatedAt($createdAt) |
| 122 | 122 | { |
| 123 | - if (!$createdAt instanceof \DateTime) { |
|
| 123 | + if ( ! $createdAt instanceof \DateTime) { |
|
| 124 | 124 | $createdAt = \DateTime::createFromFormat('d.m.Y H:i:s', $createdAt); |
| 125 | 125 | } |
| 126 | 126 | $this->createdAt = $createdAt; |
@@ -23,13 +23,13 @@ discard block |
||
| 23 | 23 | |
| 24 | 24 | public function __construct(array $paymentData = []) |
| 25 | 25 | { |
| 26 | - if (!empty($paymentData['category'])) { |
|
| 26 | + if ( ! empty($paymentData['category'])) { |
|
| 27 | 27 | $this->category = $paymentData['category']; |
| 28 | 28 | } |
| 29 | - if (!empty($paymentData['purpose'])) { |
|
| 29 | + if ( ! empty($paymentData['purpose'])) { |
|
| 30 | 30 | $this->purpose = $paymentData['purpose']; |
| 31 | 31 | } |
| 32 | - if (!empty($paymentData['sum'])) { |
|
| 32 | + if ( ! empty($paymentData['sum'])) { |
|
| 33 | 33 | $this->sum = $paymentData['sum']; |
| 34 | 34 | } |
| 35 | 35 | } |
@@ -40,13 +40,13 @@ discard block |
||
| 40 | 40 | public function toArray() |
| 41 | 41 | { |
| 42 | 42 | $result = []; |
| 43 | - if (!empty($this->category)) { |
|
| 43 | + if ( ! empty($this->category)) { |
|
| 44 | 44 | $result['category'] = $this->getCategory(); |
| 45 | 45 | } |
| 46 | - if (!empty($this->purpose)) { |
|
| 46 | + if ( ! empty($this->purpose)) { |
|
| 47 | 47 | $result['purpose'] = $this->getPurpose(); |
| 48 | 48 | } |
| 49 | - if (!empty($this->sum)) { |
|
| 49 | + if ( ! empty($this->sum)) { |
|
| 50 | 50 | $result['sum'] = $this->getSum(); |
| 51 | 51 | } |
| 52 | 52 | return $result; |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | throw new LPTrackerSDKException('Payment purpose is required'); |
| 67 | 67 | } |
| 68 | 68 | |
| 69 | - if (!isset($this->sum)) { |
|
| 69 | + if ( ! isset($this->sum)) { |
|
| 70 | 70 | throw new LPTrackerSDKException('Payment sum is required'); |
| 71 | 71 | } |
| 72 | 72 | |
@@ -43,29 +43,29 @@ discard block |
||
| 43 | 43 | |
| 44 | 44 | public function __construct(array $contactData = []) |
| 45 | 45 | { |
| 46 | - if (!empty($contactData['id'])) { |
|
| 46 | + if ( ! empty($contactData['id'])) { |
|
| 47 | 47 | $this->id = (int) $contactData['id']; |
| 48 | 48 | } |
| 49 | - if (!empty($contactData['project_id'])) { |
|
| 49 | + if ( ! empty($contactData['project_id'])) { |
|
| 50 | 50 | $this->projectId = (int) $contactData['project_id']; |
| 51 | 51 | } |
| 52 | - if (!empty($contactData['name'])) { |
|
| 52 | + if ( ! empty($contactData['name'])) { |
|
| 53 | 53 | $this->name = $contactData['name']; |
| 54 | 54 | } |
| 55 | - if (!empty($contactData['profession'])) { |
|
| 55 | + if ( ! empty($contactData['profession'])) { |
|
| 56 | 56 | $this->profession = $contactData['profession']; |
| 57 | 57 | } |
| 58 | - if (!empty($contactData['site'])) { |
|
| 58 | + if ( ! empty($contactData['site'])) { |
|
| 59 | 59 | $this->site = $contactData['site']; |
| 60 | 60 | } |
| 61 | - if (!empty($contactData['details']) && is_array($contactData['details'])) { |
|
| 61 | + if ( ! empty($contactData['details']) && is_array($contactData['details'])) { |
|
| 62 | 62 | foreach ($contactData['details'] as $detail) { |
| 63 | 63 | $detail['contact_id'] = $this->id; |
| 64 | 64 | $detailModel = new ContactDetail($detail); |
| 65 | 65 | $this->addDetail($detailModel); |
| 66 | 66 | } |
| 67 | 67 | } |
| 68 | - if (!empty($contactData['fields']) && is_array($contactData['fields'])) { |
|
| 68 | + if ( ! empty($contactData['fields']) && is_array($contactData['fields'])) { |
|
| 69 | 69 | foreach ($contactData['fields'] as $fieldData) { |
| 70 | 70 | $fieldData['contact_id'] = $this->id; |
| 71 | 71 | $fieldModel = new ContactField($fieldData); |
@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | } |
| 90 | 90 | |
| 91 | 91 | foreach ($this->details as $detail) { |
| 92 | - if (!$detail->validate()) { |
|
| 92 | + if ( ! $detail->validate()) { |
|
| 93 | 93 | throw new LPTrackerSDKException('The contact does not have valid detail'); |
| 94 | 94 | } |
| 95 | 95 | } |
@@ -105,16 +105,16 @@ discard block |
||
| 105 | 105 | 'project_id' => $this->getProjectId(), |
| 106 | 106 | 'details' => [], |
| 107 | 107 | ]; |
| 108 | - if (!empty($this->id)) { |
|
| 108 | + if ( ! empty($this->id)) { |
|
| 109 | 109 | $result['id'] = $this->getId(); |
| 110 | 110 | } |
| 111 | - if (!empty($this->name)) { |
|
| 111 | + if ( ! empty($this->name)) { |
|
| 112 | 112 | $result['name'] = $this->getName(); |
| 113 | 113 | } |
| 114 | - if (!empty($this->profession)) { |
|
| 114 | + if ( ! empty($this->profession)) { |
|
| 115 | 115 | $result['profession'] = $this->getProfession(); |
| 116 | 116 | } |
| 117 | - if (!empty($this->site)) { |
|
| 117 | + if ( ! empty($this->site)) { |
|
| 118 | 118 | $result['site'] = $this->getSite(); |
| 119 | 119 | } |
| 120 | 120 | foreach ($this->getDetails() as $detail) { |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | if (empty($baseUrl)) { |
| 31 | 31 | $baseUrl = LPTrackerBase::DEFAULT_ADDRESS; |
| 32 | 32 | } |
| 33 | - $url = $baseUrl . $actionUrl; |
|
| 33 | + $url = $baseUrl.$actionUrl; |
|
| 34 | 34 | $curl = new cURL(); |
| 35 | 35 | $request = $curl->newRequest($method, $url, $data, Request::ENCODING_JSON); |
| 36 | 36 | $request->setHeader('Content-Type', 'application/json'); |
@@ -47,8 +47,8 @@ discard block |
||
| 47 | 47 | throw new LPTrackerServerException('Can`t decode response'); |
| 48 | 48 | } |
| 49 | 49 | |
| 50 | - if (!empty($body['errors'])) { |
|
| 51 | - if (!empty($body['errors'][0]['message'])) { |
|
| 50 | + if ( ! empty($body['errors'])) { |
|
| 51 | + if ( ! empty($body['errors'][0]['message'])) { |
|
| 52 | 52 | throw new LPTrackerResponseException($body['errors'][0]['message']); |
| 53 | 53 | } |
| 54 | 54 | |
@@ -81,13 +81,13 @@ |
||
| 81 | 81 | if (empty($config['token'])) { |
| 82 | 82 | if (empty($config['login'])) { |
| 83 | 83 | throw new LPTrackerSDKException( |
| 84 | - 'Required "login" key not supplied in config and could not find fallback environment variable "' . static::LOGIN_ENV_NAME . '"' |
|
| 84 | + 'Required "login" key not supplied in config and could not find fallback environment variable "'.static::LOGIN_ENV_NAME.'"' |
|
| 85 | 85 | ); |
| 86 | 86 | } |
| 87 | 87 | |
| 88 | 88 | if (empty($config['password'])) { |
| 89 | 89 | throw new LPTrackerSDKException( |
| 90 | - 'Required "password" key not supplied in config and could not find fallback environment variable "' . static::PASSWORD_ENV_NAME . '"' |
|
| 90 | + 'Required "password" key not supplied in config and could not find fallback environment variable "'.static::PASSWORD_ENV_NAME.'"' |
|
| 91 | 91 | ); |
| 92 | 92 | } |
| 93 | 93 | } |
@@ -2,8 +2,6 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace LPTracker\models; |
| 4 | 4 | |
| 5 | -use LPTracker\exceptions\LPTrackerSDKException; |
|
| 6 | - |
|
| 7 | 5 | class LeadFile extends Model |
| 8 | 6 | { |
| 9 | 7 | /** |
@@ -28,16 +28,16 @@ discard block |
||
| 28 | 28 | |
| 29 | 29 | public function __construct(array $fileData = []) |
| 30 | 30 | { |
| 31 | - if (!empty($fileData['id'])) { |
|
| 31 | + if ( ! empty($fileData['id'])) { |
|
| 32 | 32 | $this->id = (int) $fileData['id']; |
| 33 | 33 | } |
| 34 | - if (!empty($fileData['name'])) { |
|
| 34 | + if ( ! empty($fileData['name'])) { |
|
| 35 | 35 | $this->name = $fileData['name']; |
| 36 | 36 | } |
| 37 | - if (!empty($fileData['ext'])) { |
|
| 37 | + if ( ! empty($fileData['ext'])) { |
|
| 38 | 38 | $this->ext = $fileData['ext']; |
| 39 | 39 | } |
| 40 | - if (!empty($fileData['data'])) { |
|
| 40 | + if ( ! empty($fileData['data'])) { |
|
| 41 | 41 | $this->data = $fileData['data']; |
| 42 | 42 | } |
| 43 | 43 | } |
@@ -48,16 +48,16 @@ discard block |
||
| 48 | 48 | public function toArray() |
| 49 | 49 | { |
| 50 | 50 | $result = []; |
| 51 | - if (!empty($this->id)) { |
|
| 51 | + if ( ! empty($this->id)) { |
|
| 52 | 52 | $result['id'] = $this->getId(); |
| 53 | 53 | } |
| 54 | - if (!empty($this->name)) { |
|
| 54 | + if ( ! empty($this->name)) { |
|
| 55 | 55 | $result['name'] = $this->getName(); |
| 56 | 56 | } |
| 57 | - if (!empty($this->ext)) { |
|
| 57 | + if ( ! empty($this->ext)) { |
|
| 58 | 58 | $result['ext'] = $this->getExt(); |
| 59 | 59 | } |
| 60 | - if (!empty($this->data)) { |
|
| 60 | + if ( ! empty($this->data)) { |
|
| 61 | 61 | $result['data'] = $this->getData(); |
| 62 | 62 | } |
| 63 | 63 | return $result; |
@@ -102,15 +102,15 @@ discard block |
||
| 102 | 102 | */ |
| 103 | 103 | public function saveFile($path) |
| 104 | 104 | { |
| 105 | - try{ |
|
| 105 | + try { |
|
| 106 | 106 | $content = $this->getData(); |
| 107 | - if(!empty($content)){ |
|
| 107 | + if ( ! empty($content)) { |
|
| 108 | 108 | @file_put_contents($path, base64_decode($content)); |
| 109 | 109 | } |
| 110 | - }catch(\Exception $e){} |
|
| 110 | + } catch (\Exception $e) {} |
|
| 111 | 111 | } |
| 112 | 112 | |
| 113 | - public function validate(){ |
|
| 113 | + public function validate() { |
|
| 114 | 114 | return true; |
| 115 | 115 | } |
| 116 | 116 | } |
@@ -107,7 +107,7 @@ |
||
| 107 | 107 | if(!empty($content)){ |
| 108 | 108 | @file_put_contents($path, base64_decode($content)); |
| 109 | 109 | } |
| 110 | - }catch(\Exception $e){} |
|
| 110 | + } catch(\Exception $e){} |
|
| 111 | 111 | } |
| 112 | 112 | |
| 113 | 113 | public function validate(){ |
@@ -91,7 +91,7 @@ |
||
| 91 | 91 | 'name' => $this->name, |
| 92 | 92 | 'type' => $this->type, |
| 93 | 93 | ]; |
| 94 | - if (!empty($this->value)) { |
|
| 94 | + if ( ! empty($this->value)) { |
|
| 95 | 95 | $result['value'] = $this->getValue(); |
| 96 | 96 | } |
| 97 | 97 | return $result; |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | } else { |
| 91 | 91 | $project = (int) $project; |
| 92 | 92 | } |
| 93 | - $url = '/project/' . $project; |
|
| 93 | + $url = '/project/'.$project; |
|
| 94 | 94 | $response = LPTrackerRequest::sendRequest($url, [], 'GET', $this->token, $this->address); |
| 95 | 95 | return new Project($response); |
| 96 | 96 | } |
@@ -119,7 +119,7 @@ discard block |
||
| 119 | 119 | } else { |
| 120 | 120 | $project = (int) $project; |
| 121 | 121 | } |
| 122 | - $url = '/project/' . $project . '/customs'; |
|
| 122 | + $url = '/project/'.$project.'/customs'; |
|
| 123 | 123 | $response = LPTrackerRequest::sendRequest($url, [], 'GET', $this->token, $this->address); |
| 124 | 124 | $result = []; |
| 125 | 125 | foreach ($response as $customData) { |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | } else { |
| 142 | 142 | $project = (int) $project; |
| 143 | 143 | } |
| 144 | - $url = '/project/' . $project . '/funnel'; |
|
| 144 | + $url = '/project/'.$project.'/funnel'; |
|
| 145 | 145 | $response = LPTrackerRequest::sendRequest($url, [], 'GET', $this->token, $this->address); |
| 146 | 146 | $result = []; |
| 147 | 147 | foreach ($response as $stageData) { |
@@ -163,7 +163,7 @@ discard block |
||
| 163 | 163 | } else { |
| 164 | 164 | $project = (int) $project; |
| 165 | 165 | } |
| 166 | - $url = '/project/' . $project . '/fields'; |
|
| 166 | + $url = '/project/'.$project.'/fields'; |
|
| 167 | 167 | $response = LPTrackerRequest::sendRequest($url, [], 'GET', $this->token, $this->address); |
| 168 | 168 | $result = []; |
| 169 | 169 | foreach ($response as $customData) { |
@@ -185,7 +185,7 @@ discard block |
||
| 185 | 185 | } else { |
| 186 | 186 | $project = (int) $project; |
| 187 | 187 | } |
| 188 | - $url = '/project/' . $project . '/callback-url'; |
|
| 188 | + $url = '/project/'.$project.'/callback-url'; |
|
| 189 | 189 | LPTrackerRequest::sendRequest($url, ['url' => $callbackUrl], 'PUT', $this->token, $this->address); |
| 190 | 190 | } |
| 191 | 191 | |
@@ -261,7 +261,7 @@ discard block |
||
| 261 | 261 | throw new LPTrackerSDKException('Invalid contact ID'); |
| 262 | 262 | } |
| 263 | 263 | |
| 264 | - $url = '/contact/' . $contact; |
|
| 264 | + $url = '/contact/'.$contact; |
|
| 265 | 265 | $response = LPTrackerRequest::sendRequest($url, [], 'GET', $this->token, $this->address); |
| 266 | 266 | return new Contact($response); |
| 267 | 267 | } |
@@ -273,12 +273,12 @@ discard block |
||
| 273 | 273 | */ |
| 274 | 274 | public function saveContact(Contact $contact) |
| 275 | 275 | { |
| 276 | - if (!$contact->validate()) { |
|
| 276 | + if ( ! $contact->validate()) { |
|
| 277 | 277 | throw new LPTrackerSDKException('Invalid contact'); |
| 278 | 278 | } |
| 279 | 279 | |
| 280 | 280 | $data = $contact->toArray(); |
| 281 | - if (!empty($data['fields'])) { |
|
| 281 | + if ( ! empty($data['fields'])) { |
|
| 282 | 282 | $fields = []; |
| 283 | 283 | foreach ($data['fields'] as $key => $field) { |
| 284 | 284 | if (is_array($field) && isset($field['id'], $field['value'])) { |
@@ -290,7 +290,7 @@ discard block |
||
| 290 | 290 | $data['fields'] = $fields; |
| 291 | 291 | } |
| 292 | 292 | if ($contact->getId() > 0) { |
| 293 | - $url = '/contact/' . $contact->getId(); |
|
| 293 | + $url = '/contact/'.$contact->getId(); |
|
| 294 | 294 | $response = LPTrackerRequest::sendRequest($url, $contact->toArray(), 'PUT', $this->token, $this->address); |
| 295 | 295 | } else { |
| 296 | 296 | $response = LPTrackerRequest::sendRequest('/contact', $contact->toArray(), 'POST', $this->token, $this->address); |
@@ -364,7 +364,7 @@ discard block |
||
| 364 | 364 | if (isset($searchOptions['phone'])) { |
| 365 | 365 | $data['phone'] = $searchOptions['phone']; |
| 366 | 366 | } |
| 367 | - $url = '/contact/search?' . http_build_query($data); |
|
| 367 | + $url = '/contact/search?'.http_build_query($data); |
|
| 368 | 368 | $response = LPTrackerRequest::sendRequest($url, [], 'GET', $this->token, $this->address); |
| 369 | 369 | $result = []; |
| 370 | 370 | foreach ($response as $contactData) { |
@@ -389,7 +389,7 @@ discard block |
||
| 389 | 389 | throw new LPTrackerSDKException('Invalid contact id'); |
| 390 | 390 | } |
| 391 | 391 | |
| 392 | - $url = '/contact/' . $contact . '/leads'; |
|
| 392 | + $url = '/contact/'.$contact.'/leads'; |
|
| 393 | 393 | $response = LPTrackerRequest::sendRequest($url, [], 'GET', $this->token, $this->address); |
| 394 | 394 | $result = []; |
| 395 | 395 | foreach ($response as $leadData) { |
@@ -462,11 +462,11 @@ discard block |
||
| 462 | 462 | */ |
| 463 | 463 | public function saveContactField(ContactField $field) |
| 464 | 464 | { |
| 465 | - if (!$field->validate() || empty($field->getContactId())) { |
|
| 465 | + if ( ! $field->validate() || empty($field->getContactId())) { |
|
| 466 | 466 | throw new LPTrackerSDKException('Invalid field'); |
| 467 | 467 | } |
| 468 | 468 | |
| 469 | - $url = '/contact/' . $field->getContactId() . '/field/' . $field->getId(); |
|
| 469 | + $url = '/contact/'.$field->getContactId().'/field/'.$field->getId(); |
|
| 470 | 470 | if ($field->getValue() === null) { |
| 471 | 471 | LPTrackerRequest::sendRequest($url, [], 'DELETE', $this->token, $this->address); |
| 472 | 472 | $response = $field->toArray(); |
@@ -494,7 +494,7 @@ discard block |
||
| 494 | 494 | $viewData['project_id'] = (int) $project; |
| 495 | 495 | } |
| 496 | 496 | $view = new View($viewData); |
| 497 | - if (!$view->validate()) { |
|
| 497 | + if ( ! $view->validate()) { |
|
| 498 | 498 | throw new LPTrackerSDKException('Invalid view data'); |
| 499 | 499 | } |
| 500 | 500 | |
@@ -519,7 +519,7 @@ discard block |
||
| 519 | 519 | throw new LPTrackerSDKException('Invalid view ID'); |
| 520 | 520 | } |
| 521 | 521 | |
| 522 | - $url = '/view/' . $view; |
|
| 522 | + $url = '/view/'.$view; |
|
| 523 | 523 | $response = LPTrackerRequest::sendRequest($url, [], 'GET', $this->token, $this->address); |
| 524 | 524 | return new View($response); |
| 525 | 525 | } |
@@ -531,12 +531,12 @@ discard block |
||
| 531 | 531 | */ |
| 532 | 532 | public function saveView(View $view) |
| 533 | 533 | { |
| 534 | - if (!$view->validate()) { |
|
| 534 | + if ( ! $view->validate()) { |
|
| 535 | 535 | throw new LPTrackerSDKException('Invalid view'); |
| 536 | 536 | } |
| 537 | 537 | |
| 538 | 538 | if ($view->getId() > 0) { |
| 539 | - $url = '/view/' . $view->getId(); |
|
| 539 | + $url = '/view/'.$view->getId(); |
|
| 540 | 540 | $response = LPTrackerRequest::sendRequest($url, $view->toArray(), 'PUT', $this->token, $this->address); |
| 541 | 541 | } else { |
| 542 | 542 | $response = LPTrackerRequest::sendRequest('/view', $view->toArray(), 'POST', $this->token, $this->address); |
@@ -577,11 +577,11 @@ discard block |
||
| 577 | 577 | $leadData['contact_id'] = (int) $contact; |
| 578 | 578 | } |
| 579 | 579 | $lead = new Lead($leadData); |
| 580 | - if (!$lead->validate()) { |
|
| 580 | + if ( ! $lead->validate()) { |
|
| 581 | 581 | throw new LPTrackerSDKException('Invalid lead data'); |
| 582 | 582 | } |
| 583 | 583 | |
| 584 | - if (!empty($lead->getView()) && empty($lead->getView()->getId())) { |
|
| 584 | + if ( ! empty($lead->getView()) && empty($lead->getView()->getId())) { |
|
| 585 | 585 | $contactModel = $this->getContact($contact); |
| 586 | 586 | $viewData = $lead->getView()->toArray(); |
| 587 | 587 | $lead->setView($this->createView($contactModel->getProjectId(), $viewData)); |
@@ -590,7 +590,7 @@ discard block |
||
| 590 | 590 | $data = array_merge($data, $options); |
| 591 | 591 | if (isset($leadData['view_id'])) { |
| 592 | 592 | $data['view_id'] = (int) $leadData['view_id']; |
| 593 | - } elseif (!empty($lead->getView()) && !empty($lead->getView()->getId())) { |
|
| 593 | + } elseif ( ! empty($lead->getView()) && ! empty($lead->getView()->getId())) { |
|
| 594 | 594 | $data['view_id'] = $lead->getView()->getId(); |
| 595 | 595 | } |
| 596 | 596 | $response = LPTrackerRequest::sendRequest('/lead', $data, 'POST', $this->token, $this->address); |
@@ -613,7 +613,7 @@ discard block |
||
| 613 | 613 | throw new LPTrackerSDKException('Invalid lead ID'); |
| 614 | 614 | } |
| 615 | 615 | |
| 616 | - $url = '/lead/' . $lead; |
|
| 616 | + $url = '/lead/'.$lead; |
|
| 617 | 617 | $response = LPTrackerRequest::sendRequest($url, [], 'GET', $this->token, $this->address); |
| 618 | 618 | return new Lead($response); |
| 619 | 619 | } |
@@ -642,12 +642,12 @@ discard block |
||
| 642 | 642 | if ($custom <= 0) { |
| 643 | 643 | throw new LPTrackerSDKException('Invalid custom ID'); |
| 644 | 644 | } |
| 645 | - $file = (int)$file; |
|
| 645 | + $file = (int) $file; |
|
| 646 | 646 | if ($file <= 0) { |
| 647 | 647 | throw new LPTrackerSDKException('Invalid file ID'); |
| 648 | 648 | } |
| 649 | 649 | |
| 650 | - $url = '/lead/' . $lead . '/custom/' . $custom . '/file/' . $file; |
|
| 650 | + $url = '/lead/'.$lead.'/custom/'.$custom.'/file/'.$file; |
|
| 651 | 651 | $response = LPTrackerRequest::sendRequest($url, [], 'GET', $this->token, $this->address); |
| 652 | 652 | return new LeadFile($response); |
| 653 | 653 | } |
@@ -659,12 +659,12 @@ discard block |
||
| 659 | 659 | */ |
| 660 | 660 | public function saveLead(Lead $lead) |
| 661 | 661 | { |
| 662 | - if (!$lead->validate()) { |
|
| 662 | + if ( ! $lead->validate()) { |
|
| 663 | 663 | throw new LPTrackerSDKException('Invalid lead'); |
| 664 | 664 | } |
| 665 | 665 | |
| 666 | 666 | if ($lead->getId() > 0) { |
| 667 | - $url = '/lead/' . $lead->getId(); |
|
| 667 | + $url = '/lead/'.$lead->getId(); |
|
| 668 | 668 | $response = LPTrackerRequest::sendRequest($url, $lead->toArray(true), 'PUT', $this->token, $this->address); |
| 669 | 669 | } else { |
| 670 | 670 | $response = LPTrackerRequest::sendRequest( |
@@ -728,7 +728,7 @@ discard block |
||
| 728 | 728 | throw new LPTrackerSDKException('Invalid lead ID'); |
| 729 | 729 | } |
| 730 | 730 | |
| 731 | - $url = '/lead/' . $lead . '/payment'; |
|
| 731 | + $url = '/lead/'.$lead.'/payment'; |
|
| 732 | 732 | $data = [ |
| 733 | 733 | 'category' => $category, |
| 734 | 734 | 'purpose' => $purpose, |
@@ -762,7 +762,7 @@ discard block |
||
| 762 | 762 | } else { |
| 763 | 763 | $lead = (int) $lead; |
| 764 | 764 | } |
| 765 | - $url = '/lead/' . $lead . '/call'; |
|
| 765 | + $url = '/lead/'.$lead.'/call'; |
|
| 766 | 766 | LPTrackerRequest::sendRequest($url, [], 'POST', $this->token, $this->address); |
| 767 | 767 | } |
| 768 | 768 | |
@@ -780,7 +780,7 @@ discard block |
||
| 780 | 780 | } else { |
| 781 | 781 | $lead = (int) $lead; |
| 782 | 782 | } |
| 783 | - $url = '/lead/' . $lead . '/funnel'; |
|
| 783 | + $url = '/lead/'.$lead.'/funnel'; |
|
| 784 | 784 | $data = [ |
| 785 | 785 | 'funnel' => $newStageId, |
| 786 | 786 | 'options' => $options, |
@@ -815,7 +815,7 @@ discard block |
||
| 815 | 815 | } else { |
| 816 | 816 | $lead = (int) $lead; |
| 817 | 817 | } |
| 818 | - $url = '/lead/' . $lead . '/owner'; |
|
| 818 | + $url = '/lead/'.$lead.'/owner'; |
|
| 819 | 819 | $data = [ |
| 820 | 820 | 'owner' => $newOwnerId, |
| 821 | 821 | 'options' => $options, |
@@ -837,7 +837,7 @@ discard block |
||
| 837 | 837 | } else { |
| 838 | 838 | $lead = (int) $lead; |
| 839 | 839 | } |
| 840 | - $url = '/lead/' . $lead . '/comments'; |
|
| 840 | + $url = '/lead/'.$lead.'/comments'; |
|
| 841 | 841 | $response = LPTrackerRequest::sendRequest($url, [], 'GET', $this->token, $this->address); |
| 842 | 842 | $result = []; |
| 843 | 843 | foreach ($response as $commentData) { |
@@ -861,7 +861,7 @@ discard block |
||
| 861 | 861 | } else { |
| 862 | 862 | $lead = (int) $lead; |
| 863 | 863 | } |
| 864 | - $url = '/lead/' . $lead . '/comment'; |
|
| 864 | + $url = '/lead/'.$lead.'/comment'; |
|
| 865 | 865 | $data = [ |
| 866 | 866 | 'text' => $text, |
| 867 | 867 | 'options' => $options, |
@@ -889,7 +889,7 @@ discard block |
||
| 889 | 889 | } else { |
| 890 | 890 | $custom = (int) $custom; |
| 891 | 891 | } |
| 892 | - $url = '/lead/' . $lead . '/file'; |
|
| 892 | + $url = '/lead/'.$lead.'/file'; |
|
| 893 | 893 | $data = [ |
| 894 | 894 | 'name' => pathinfo($absolutePath, PATHINFO_BASENAME), |
| 895 | 895 | 'mime' => mime_content_type($absolutePath), |
@@ -906,11 +906,11 @@ discard block |
||
| 906 | 906 | */ |
| 907 | 907 | public function saveLeadCustom(Custom $custom, array $options = []) |
| 908 | 908 | { |
| 909 | - if (!$custom->validate() || empty($custom->getLeadId())) { |
|
| 909 | + if ( ! $custom->validate() || empty($custom->getLeadId())) { |
|
| 910 | 910 | throw new LPTrackerSDKException('Invalid custom'); |
| 911 | 911 | } |
| 912 | 912 | |
| 913 | - $url = '/lead/' . $custom->getLeadId() . '/custom/' . $custom->getId(); |
|
| 913 | + $url = '/lead/'.$custom->getLeadId().'/custom/'.$custom->getId(); |
|
| 914 | 914 | if ($custom->getValue() === null) { |
| 915 | 915 | $data = [ |
| 916 | 916 | 'options' => $options, |
@@ -973,7 +973,7 @@ discard block |
||
| 973 | 973 | } else { |
| 974 | 974 | $project = (int) $project; |
| 975 | 975 | } |
| 976 | - $actionUrl = '/custom/' . $project . '/create'; |
|
| 976 | + $actionUrl = '/custom/'.$project.'/create'; |
|
| 977 | 977 | $response = LPTrackerRequest::sendRequest($actionUrl, $options, 'POST', $this->token, $this->address); |
| 978 | 978 | return new CustomField($response); |
| 979 | 979 | } |
@@ -996,7 +996,7 @@ discard block |
||
| 996 | 996 | } else { |
| 997 | 997 | $project = (int) $project; |
| 998 | 998 | } |
| 999 | - $actionUrl = '/lead/' . $project . '/list?' . http_build_query([ |
|
| 999 | + $actionUrl = '/lead/'.$project.'/list?'.http_build_query([ |
|
| 1000 | 1000 | 'offset' => $offset, |
| 1001 | 1001 | 'limit' => $limit, |
| 1002 | 1002 | 'sort' => $sort, |