for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mouf\Mvc\Splash\Annotations;
/**
* @Annotation
* @Target({"METHOD"})
* @Attributes({
* @Attribute("value", type = "string")
* })
*/
class Title
{
* @var string
private $title;
public function __construct(array $values)
$this->title = $values['value'];
}
* @return string
public function getTitle()
return $this->title;