HummingBirdAnimeClient/src/Ion/Attribute/Controller.php

26 lines
582 B
PHP
Raw Permalink Normal View History

2023-03-16 13:03:48 -04:00
<?php declare(strict_types=1);
/**
* Hummingbird Anime List Client
*
* An API client for Kitsu to manage anime and manga watch lists
*
2023-07-13 11:08:05 -04:00
* PHP version 8.1
2023-03-16 13:03:48 -04:00
*
2023-07-13 11:08:05 -04:00
* @copyright 2015 - 2023 Timothy J. Warren <tim@timshome.page>
2023-03-16 13:03:48 -04:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 5.2
2023-07-13 11:08:05 -04:00
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
2023-03-16 13:03:48 -04:00
*/
namespace Aviat\Ion\Attribute;
use Attribute;
#[Attribute(Attribute::TARGET_CLASS)]
2023-05-09 12:46:52 -04:00
class Controller
{
public function __construct(public string $prefix = '')
{
}
}