Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
bessudnov committed May 30, 2023
2 parents 92c2b41 + e248fe6 commit 5feafb8
Showing 1 changed file with 1 addition and 24 deletions.
25 changes: 1 addition & 24 deletions src/AmoCRM/Models/Chats/Templates/AttachmentModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,14 @@ class AttachmentModel extends BaseApiModel implements Arrayable
/** @var string */
protected $id;

/** @var string */
protected $id;

/** @var string */
protected $name;

/** @var string */
protected $type;

/**
* @param array $button
*
* @param array $attachment
* @return AttachmentModel
* @throws InvalidArgumentException
*/
Expand Down Expand Up @@ -125,23 +121,4 @@ public function toArray(): array
'type' => $this->getType(),
];
}

/**
* @return string
*/
public function getId(): string
{
return $this->id;
}

/**
* @param string $id
* @return AttachmentModel
*/
public function setId(string $id): AttachmentModel
{
$this->id = $id;

return $this;
}
}

0 comments on commit 5feafb8

Please sign in to comment.