normalize and simplify @copyright and @license phpdoc tags based on phpDocumentor recommendations to clean symbols hovers

pull/720/head
fadrian06 5 days ago
parent d8fe78449c
commit cff442d964

@ -18,8 +18,8 @@ use TypeError;
* allows you to hook other functions to an event that can modify the * allows you to hook other functions to an event that can modify the
* input parameters and/or the output. * input parameters and/or the output.
* *
* @license MIT, http://flightphp.com/license * @copyright 2011 [Mike Cao](https://mikecao.com)
* @copyright Copyright (c) 2011, Mike Cao <mike@mikecao.com> * @license https://docs.flightphp.com/license MIT
* @phpstan-template EngineTemplate of object * @phpstan-template EngineTemplate of object
*/ */
class Dispatcher class Dispatcher

@ -13,8 +13,8 @@ use Exception;
* instances with custom initialization parameters. It also performs * instances with custom initialization parameters. It also performs
* class autoloading. * class autoloading.
* *
* @license MIT, http://flightphp.com/license * @copyright 2011 [Mike Cao](https://mikecao.com)
* @copyright Copyright (c) 2011, Mike Cao <mike@mikecao.com> * @license https://docs.flightphp.com/license MIT
*/ */
class Loader class Loader
{ {

@ -11,8 +11,8 @@ use flight\util\Collection;
* all the super globals $_GET, $_POST, $_COOKIE, and $_FILES * all the super globals $_GET, $_POST, $_COOKIE, and $_FILES
* are stored and accessible via the Request object. * are stored and accessible via the Request object.
* *
* @license MIT, http://flightphp.com/license * @copyright 2011 [Mike Cao](https://mikecao.com)
* @copyright Copyright (c) 2011, Mike Cao <mike@mikecao.com> * @license https://docs.flightphp.com/license MIT
* *
* The default request properties are: * The default request properties are:
* *

@ -12,8 +12,8 @@ use flight\core\EventDispatcher;
* contains the response headers, HTTP status code, and response * contains the response headers, HTTP status code, and response
* body. * body.
* *
* @license MIT, http://flightphp.com/license * @copyright 2011 [Mike Cao](https://mikecao.com)
* @copyright Copyright (c) 2011, Mike Cao <mike@mikecao.com> * @license https://docs.flightphp.com/license MIT
*/ */
class Response class Response
{ {

@ -9,8 +9,8 @@ namespace flight\net;
* an assigned callback function. The Router tries to match the * an assigned callback function. The Router tries to match the
* requested URL against a series of URL patterns. * requested URL against a series of URL patterns.
* *
* @license MIT, http://flightphp.com/license * @copyright 2011 [Mike Cao](https://mikecao.com)
* @copyright Copyright (c) 2011, Mike Cao <mike@mikecao.com> * @license https://docs.flightphp.com/license MIT
*/ */
class Route class Route
{ {

@ -12,8 +12,8 @@ use flight\net\Route;
* an assigned callback function. The Router tries to match the * an assigned callback function. The Router tries to match the
* requested URL against a series of URL patterns. * requested URL against a series of URL patterns.
* *
* @license MIT, http://flightphp.com/license * @copyright 2011 [Mike Cao](https://mikecao.com)
* @copyright Copyright (c) 2011, Mike Cao <mike@mikecao.com> * @license https://docs.flightphp.com/license MIT
*/ */
class Router class Router
{ {

@ -9,8 +9,8 @@ namespace flight\template;
* methods for managing view data and inserts the data into * methods for managing view data and inserts the data into
* view templates upon rendering. * view templates upon rendering.
* *
* @license MIT, http://flightphp.com/license * @copyright 2011 [Mike Cao](https://mikecao.com)
* @copyright Copyright (c) 2011, Mike Cao <mike@mikecao.com> * @license https://docs.flightphp.com/license MIT
*/ */
class View class View
{ {

@ -13,10 +13,10 @@ use JsonSerializable;
* The Collection class allows you to access a set of data * The Collection class allows you to access a set of data
* using both array and object notation. * using both array and object notation.
* *
* @license MIT, http://flightphp.com/license * @copyright 2011 [Mike Cao](https://mikecao.com)
* @copyright Copyright (c) 2011, Mike Cao <mike@mikecao.com>
* @implements ArrayAccess<string, mixed> * @implements ArrayAccess<string, mixed>
* @implements Iterator<string, mixed> * @implements Iterator<string, mixed>
* @license https://docs.flightphp.com/license MIT
*/ */
class Collection implements ArrayAccess, Iterator, Countable, JsonSerializable class Collection implements ArrayAccess, Iterator, Countable, JsonSerializable
{ {

Loading…
Cancel
Save