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;
/**
* Category
*
* @package Realshadow\Redtube\Entities
* @author Lukáš Homza <[email protected]>
*/
class Category
{
* @var string $name
* @JMS\XmlValue(cdata=true)
* @JMS\Type("string")
private $name;
* @return string
public function __toString()
return $this->name;
}
public function getName()