diff --git a/helpers/file_helper.php b/helpers/file_helper.php index c823a6a..fce0bac 100644 --- a/helpers/file_helper.php +++ b/helpers/file_helper.php @@ -277,19 +277,19 @@ function makeNewFolder($folderPath = '', $gitkeep = false) $createReadme = generateFileReadme($folderPath); if (is_cli()) { if ($createIndex) { - echo "Create file index.html in " . $folderPath . " successfully"; + echo "Create file index.html in " . $folderPath . " successfully" . PHP_EOL; } if ($createHtaccess) { - echo "Create file .htaccess in " . $folderPath . " successfully"; + echo "Create file .htaccess in " . $folderPath . " successfully" . PHP_EOL; } if ($createReadme) { - echo "Create file README.md in " . $folderPath . " successfully"; + echo "Create file README.md in " . $folderPath . " successfully" . PHP_EOL; } } if ($gitkeep === true) { $createGitkeep = touch($folderPath . '/.gitkeep'); if (is_cli() && $createGitkeep) { - echo "Create file .gitkeep in " . $folderPath . " successfully"; + echo "Create file .gitkeep in " . $folderPath . " successfully" . PHP_EOL; } } return true; diff --git a/src/BaseHelper.php b/src/BaseHelper.php index 9497c69..173335b 100644 --- a/src/BaseHelper.php +++ b/src/BaseHelper.php @@ -19,8 +19,8 @@ */ class BaseHelper { - const VERSION = '1.6.4'; - const LAST_MODIFIED = '2024-09-07'; + const VERSION = '1.6.5'; + const LAST_MODIFIED = '2024-09-08'; const PROJECT_NAME = 'CodeIgniter - Basic Helper'; const AUTHOR_NAME = 'Hung Nguyen'; const AUTHOR_FULL_NAME = 'Hung Nguyen';