Skip to content

Commit

Permalink
fix cs
Browse files Browse the repository at this point in the history
  • Loading branch information
bessudnov committed May 11, 2023
1 parent 6e31f3f commit d2220fc
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
class ReviewsCollection extends BaseApiCollection
{
const ITEM_CLASS = ReviewModel::class;
}
}
4 changes: 2 additions & 2 deletions src/AmoCRM/Models/Chats/Templates/ReviewModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ public static function fromArray(array $data): ReviewModel
}

return $model;

}

public function toArray(): array
{
return [
Expand Down Expand Up @@ -108,4 +108,4 @@ public function getStatus(): string
{
return $this->status;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ class LegalEntityCustomFieldValueModel extends BaseArrayCustomFieldValueModel
* @var string|null
*/
protected $realAddress;

/**
* @var string|null
*/
Expand All @@ -111,12 +111,12 @@ class LegalEntityCustomFieldValueModel extends BaseArrayCustomFieldValueModel
* @var string|null
*/
protected $bankAccountNumber;

/**
* @var string|null
*/
protected $oked;

/**
* @var string|null
*/
Expand Down Expand Up @@ -355,7 +355,7 @@ public function setEgrpou(?string $egrpou): LegalEntityCustomFieldValueModel

return $this;
}

public function getMfo(): ?string
{
return $this->mfo;
Expand All @@ -379,28 +379,28 @@ public function setBankAccountNumber(?string $bankAccountNumber): LegalEntityCus

return $this;
}

public function getOked(): ?string
{
return $this->oked;
}

public function setOked(?string $oked): LegalEntityCustomFieldValueModel
{
$this->oked = $oked;

return $this;
}

public function getDirector(): ?string
{
return $this->director;
}

public function setDirector(?string $director): LegalEntityCustomFieldValueModel
{
$this->director = $director;

return $this;
}

Expand Down
2 changes: 1 addition & 1 deletion src/AmoCRM/Models/Files/FileModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ public function setUpdatedBy(?int $updatedBy): FileModel

/**
* @param FilePreviewsCollection|null $previews
*
*
* @return FileModel
*/
public function setPreviews(?FilePreviewsCollection $previews): FileModel
Expand Down
6 changes: 3 additions & 3 deletions src/AmoCRM/Models/Files/FilePreviewModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class FilePreviewModel extends BaseApiModel
*/
protected $height = 0;


/**
* @param string $downloadLink
*/
Expand Down Expand Up @@ -59,15 +59,15 @@ public function getDownloadLink(): string
/**
* @return int
*/
public function getWidth(): int
public function getWidth(): int
{
return $this->width;
}

/**
* @return int
*/
public function getHeight(): int
public function getHeight(): int
{
return $this->height;
}
Expand Down
2 changes: 1 addition & 1 deletion src/AmoCRM/Models/Files/FileUploadModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public function setCreatedBy(?int $createdBy): FileUploadModel
public function setWithPreview(bool $withPreview): FileUploadModel
{
$this->withPreview = $withPreview;

return $this;
}

Expand Down
2 changes: 1 addition & 1 deletion src/AmoCRM/Models/Sources/SourceServiceParams.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ public function setWaba(bool $waba): void
{
$this->waba = $waba;
}
}
}

0 comments on commit d2220fc

Please sign in to comment.