From 44a056ca301b2ad2ed297868e4097e271d6b00da Mon Sep 17 00:00:00 2001 From: fadrian06 Date: Thu, 25 Jan 2024 03:39:56 -0400 Subject: [PATCH] Fixed phpcs format problems in the rest of Flight modules --- flight/Flight.php | 5 ++--- flight/autoload.php | 4 ++-- flight/core/Dispatcher.php | 4 ++-- flight/core/Loader.php | 4 ++-- flight/database/PdoWrapper.php | 9 +++++---- flight/net/Request.php | 4 ++-- flight/net/Response.php | 9 ++++++--- flight/net/Route.php | 10 ++++------ flight/net/Router.php | 7 ++++--- flight/template/View.php | 4 ++-- flight/util/Collection.php | 4 ++-- 11 files changed, 33 insertions(+), 31 deletions(-) diff --git a/flight/Flight.php b/flight/Flight.php index f34c975..34b7bd5 100644 --- a/flight/Flight.php +++ b/flight/Flight.php @@ -1,7 +1,5 @@ $group_middlewares The middlewares to be applied to the group Ex: [ $middleware1, $middleware2 ] + * @param array $group_middlewares The middlewares to be + * applied to the group Ex: [ $middleware1, $middleware2 ] */ public function group(string $group_prefix, callable $callback, array $group_middlewares = []): void { diff --git a/flight/template/View.php b/flight/template/View.php index 7d08623..d0c5f3b 100644 --- a/flight/template/View.php +++ b/flight/template/View.php @@ -1,7 +1,5 @@