diff --git a/README.md b/README.md index db2f735..569eadb 100644 --- a/README.md +++ b/README.md @@ -21,16 +21,19 @@ The main takeaways that we want to convey to developers are: - Components can be swapped out with others so the use of interfaces is essential - Static analysis tools (PHPStan) must not produce errors - Code coverage for tests must be at 100% - -Part 1 https://youtu.be/f3wP_M_NFKc -Part 2 https://youtu.be/VEZvUf_PdSY -Part 3 https://youtu.be/LP64Doh0t4g -Part 4 https://youtu.be/jCEZ2WMil8Q -Part 5 https://youtu.be/syU_3cIXFMM -Part 6 https://youtu.be/AgCbqW-leCM -Part 7 https://youtu.be/tGV4pSyVLdI -Part 8 https://youtu.be/GaJhNnw_1cE -Part 9 https://youtu.be/CWofDyTdToI + +### Videos on YouTube + +- Part 01 https://youtu.be/f3wP_M_NFKc +- Part 02 https://youtu.be/VEZvUf_PdSY +- Part 03 https://youtu.be/LP64Doh0t4g +- Part 04 https://youtu.be/jCEZ2WMil8Q +- Part 05 https://youtu.be/syU_3cIXFMM +- Part 06 https://youtu.be/AgCbqW-leCM +- Part 07 https://youtu.be/tGV4pSyVLdI +- Part 08 https://youtu.be/GaJhNnw_1cE +- Part 09 https://youtu.be/CWofDyTdToI +- Part 10 https://youtu.be/8YUrGAbafaA ## Directory Structure diff --git a/src/Domain/ADR/Payload.php b/src/Domain/ADR/Payload.php index aad2cfb..68c2c83 100644 --- a/src/Domain/ADR/Payload.php +++ b/src/Domain/ADR/Payload.php @@ -19,7 +19,6 @@ use Phalcon\Domain\Payload as PhalconPayload; use function array_key_exists; -use function var_dump; /** * @phpstan-import-type TData from ResponderTypes diff --git a/src/Domain/Infrastructure/DataSource/User/Facades/UserFacade.php b/src/Domain/Infrastructure/DataSource/User/Facades/UserFacade.php index 574cbc7..541a719 100644 --- a/src/Domain/Infrastructure/DataSource/User/Facades/UserFacade.php +++ b/src/Domain/Infrastructure/DataSource/User/Facades/UserFacade.php @@ -269,7 +269,8 @@ private function cleanupFields(array $row): array } /** - * @param string $message + * @param HttpCodesEnum $item + * @param string $message * * @return Payload */