for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MovingImage\Client\VMPro\Entity;
use JMS\Serializer\Annotation\SerializedName;
use JMS\Serializer\Annotation\Type;
class UserInfo
{
/**
* @Type("string")
*/
private $email;
* @SerializedName("fullName")
private $fullName;
* @Type("array")
* @SerializedName("videoManagerIds")
private $videoManagerIds = [];
* @return string
public function getEmail()
return $this->email;
}
public function getFullName()
return $this->fullName;
* @return int[]
public function getVideoManagerIds()
return $this->videoManagerIds;