* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace IPFS\Annotation; use Doctrine\Common\Annotations\Annotation; /** * @Annotation() * @Annotation\Target({"METHOD"}) * @Annotation\Attributes({ * @Annotation\Attribute("name", type="string", required=true) * }) */ class Api { public $name = null; }