astrXbian/www/multitube/vendor/ipfs/php-client/src/Annotation/Api.php

29 lines
548 B
PHP

<?php
declare(strict_types=1);
/*
* This file is part of the "php-ipfs" package.
*
* (c) Robert Schönthal <robert.schoenthal@gmail.com>
*
* 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;
}