1
0
mirror of synced 2024-11-22 03:46:02 +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;
/**
* @var int $customerId
*
* @Type("int")
* @Accessor(getter="getCustomerId",setter="setCustomerId")
* @SkipWhenEmpty()
@ -88,6 +90,7 @@ class ChatsRequest implements ModelInterface
/**
* @param int $customerId
* @return void
*/
public function setCustomerId($customerId)
{

View File

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