diff --git a/flight/core/Dispatcher.php b/flight/core/Dispatcher.php index 62ff7f9..f0f5b2a 100644 --- a/flight/core/Dispatcher.php +++ b/flight/core/Dispatcher.php @@ -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 + * @copyright 2011 [Mike Cao](https://mikecao.com) + * @license https://docs.flightphp.com/license MIT * @phpstan-template EngineTemplate of object */ class Dispatcher diff --git a/flight/core/Loader.php b/flight/core/Loader.php index 92deceb..63bafd9 100644 --- a/flight/core/Loader.php +++ b/flight/core/Loader.php @@ -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 + * @copyright 2011 [Mike Cao](https://mikecao.com) + * @license https://docs.flightphp.com/license MIT */ class Loader { diff --git a/flight/net/Request.php b/flight/net/Request.php index 24f02a5..fadd956 100644 --- a/flight/net/Request.php +++ b/flight/net/Request.php @@ -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 + * @copyright 2011 [Mike Cao](https://mikecao.com) + * @license https://docs.flightphp.com/license MIT * * The default request properties are: * diff --git a/flight/net/Response.php b/flight/net/Response.php index 1a738cf..883bb9c 100644 --- a/flight/net/Response.php +++ b/flight/net/Response.php @@ -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 + * @copyright 2011 [Mike Cao](https://mikecao.com) + * @license https://docs.flightphp.com/license MIT */ class Response { diff --git a/flight/net/Route.php b/flight/net/Route.php index 47f93dc..434bfca 100644 --- a/flight/net/Route.php +++ b/flight/net/Route.php @@ -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 + * @copyright 2011 [Mike Cao](https://mikecao.com) + * @license https://docs.flightphp.com/license MIT */ class Route { diff --git a/flight/net/Router.php b/flight/net/Router.php index 0ec9724..a5d5150 100644 --- a/flight/net/Router.php +++ b/flight/net/Router.php @@ -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 + * @copyright 2011 [Mike Cao](https://mikecao.com) + * @license https://docs.flightphp.com/license MIT */ class Router { diff --git a/flight/template/View.php b/flight/template/View.php index f995d36..758777a 100644 --- a/flight/template/View.php +++ b/flight/template/View.php @@ -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 + * @copyright 2011 [Mike Cao](https://mikecao.com) + * @license https://docs.flightphp.com/license MIT */ class View { diff --git a/flight/util/Collection.php b/flight/util/Collection.php index e17ed37..17142e9 100644 --- a/flight/util/Collection.php +++ b/flight/util/Collection.php @@ -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 + * @copyright 2011 [Mike Cao](https://mikecao.com) * @implements ArrayAccess * @implements Iterator + * @license https://docs.flightphp.com/license MIT */ class Collection implements ArrayAccess, Iterator, Countable, JsonSerializable {