for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Eccube\Annotation;
use Doctrine\Common\Annotations\Annotation\Target;
use Doctrine\ORM\Mapping\Annotation;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\ConfigurationInterface;
/**
* @Annotation
* @Target("METHOD")
*/
final class ForwardOnly implements ConfigurationInterface
{
* Returns the alias name for an annotated configuration.
*
* @return string
public function getAliasName()
return 'forward_only';
}
* Returns whether multiple annotations of this type are allowed.
* @return bool
public function allowArray()
return false;