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
* input parameters and/or the output.
*
* @license MIT, http://flightphp.com/license
* @copyright Copyright (c) 2011, Mike Cao <mike@mikecao.com>
* @copyright 2011 [Mike Cao](https://mikecao.com)
* @license https://docs.flightphp.com/license MIT
* @phpstan-template EngineTemplate of object
*/
class Dispatcher

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

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

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

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

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

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

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

Loading…
Cancel
Save