for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Realshadow\Redtube\Entities;
use JMS\Serializer\Annotation as JMS;
/**
* Star
*
* @package Realshadow\Redtube\Entities
* @author Lukáš Homza <[email protected]>
*/
class Star
{
* @var string $url
* @JMS\XmlAttribute()
* @JMS\Type("string")
private $url;
* @var string $thumb
private $thumb;
* @var string $name
* @JMS\XmlValue(cdata=true)
private $name;
* @return string
public function __toString()
return $this->name;
}
public function getUrl()
return $this->url;
public function getThumb()
return $this->thumb;
public function getName()