1
0
mirror of synced 2024-11-22 11:56:03 +03:00

fix for linter notifications

This commit is contained in:
Pavel 2022-11-16 09:57:29 +03:00
parent 92a0eb0c0b
commit 6476caf9b9
2 changed files with 5 additions and 1 deletions

View File

@ -40,6 +40,8 @@ class ChatsRequest implements ModelInterface
private $channelType; private $channelType;
/** /**
* @var int $customerId
*
* @Type("int") * @Type("int")
* @Accessor(getter="getCustomerId",setter="setCustomerId") * @Accessor(getter="getCustomerId",setter="setCustomerId")
* @SkipWhenEmpty() * @SkipWhenEmpty()
@ -88,6 +90,7 @@ class ChatsRequest implements ModelInterface
/** /**
* @param int $customerId * @param int $customerId
* @return void
*/ */
public function setCustomerId($customerId) public function setCustomerId($customerId)
{ {

View File

@ -22,7 +22,7 @@ use JMS\Serializer\Annotation\Type;
trait PageLimit trait PageLimit
{ {
/** /**
* @var int * @var int $limit
* *
* @Type("int") * @Type("int")
* @Accessor(getter="getLimit",setter="setLimit") * @Accessor(getter="getLimit",setter="setLimit")
@ -40,6 +40,7 @@ trait PageLimit
/** /**
* @param int $limit * @param int $limit
* @return void
*/ */
public function setLimit($limit) public function setLimit($limit)
{ {