From 380350aa5198be11b6c4e2dcea8c8683028cd4a5 Mon Sep 17 00:00:00 2001 From: Grzegorz Rola <grola@seostudio.pl> Date: Thu, 5 Aug 2021 19:34:18 +0200 Subject: [PATCH] feature(init): initial version --- README.md | 7 +++++++ .../Composer/PrepareActivationReminderCommand.php | 9 +++++++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d199ed1..78be485 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,10 @@ Unit: [ { $this->delete_all( 'vendor_prefixed' ); } - private function delete_all( string $dir ) { + /** + * @param string $dir + */ + private function delete_all( $dir ) { foreach ( glob( $dir . '/*' ) as $file ) { if ( is_dir( $file ) ) { $this->delete_all( $file ); -- GitLab