From 7ae8954c31a18c8e9d1b2ec0cb9bcd907d68536c Mon Sep 17 00:00:00 2001 From: tdascoli Date: Thu, 21 Jul 2022 23:03:35 +0200 Subject: [PATCH] v1.1.4 --- src/Apollo29/SlimSkeletonCli/SlimCli.php | 2 +- .../routes-template/Action/_ROUTE_/_ROUTE_ReadAction.php | 4 ++-- .../routes-template/Action/_ROUTE_/_ROUTE_UpdateAction.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Apollo29/SlimSkeletonCli/SlimCli.php b/src/Apollo29/SlimSkeletonCli/SlimCli.php index 099a06b..978f701 100644 --- a/src/Apollo29/SlimSkeletonCli/SlimCli.php +++ b/src/Apollo29/SlimSkeletonCli/SlimCli.php @@ -15,6 +15,6 @@ public function getCommands() : array public function getVersion(): string { - return '1.1.3'; + return '1.1.4'; } } \ No newline at end of file diff --git a/src/Apollo29/routes-template/Action/_ROUTE_/_ROUTE_ReadAction.php b/src/Apollo29/routes-template/Action/_ROUTE_/_ROUTE_ReadAction.php index 87ab851..76a094a 100644 --- a/src/Apollo29/routes-template/Action/_ROUTE_/_ROUTE_ReadAction.php +++ b/src/Apollo29/routes-template/Action/_ROUTE_/_ROUTE_ReadAction.php @@ -23,9 +23,9 @@ final class _ROUTE_ReadAction * @param _ROUTE_Reader $viewer The service * @param JsonRenderer $renderer The responder */ - public function __construct(_ROUTE_Reader $ciewer, JsonRenderer $renderer) + public function __construct(_ROUTE_Reader $viewer, JsonRenderer $renderer) { - $this->reader = $ciewer; + $this->reader = $viewer; $this->renderer = $renderer; } diff --git a/src/Apollo29/routes-template/Action/_ROUTE_/_ROUTE_UpdateAction.php b/src/Apollo29/routes-template/Action/_ROUTE_/_ROUTE_UpdateAction.php index 41cda1c..bd106f0 100644 --- a/src/Apollo29/routes-template/Action/_ROUTE_/_ROUTE_UpdateAction.php +++ b/src/Apollo29/routes-template/Action/_ROUTE_/_ROUTE_UpdateAction.php @@ -20,7 +20,7 @@ final class _ROUTE_UpdateAction * The constructor. * * @param JsonRenderer $renderer The responder - * @param _ROUTE_Updater $eventUpdater The service + * @param _ROUTE_Updater $updater The service */ public function __construct(JsonRenderer $renderer, _ROUTE_Updater $updater) {