Skip to content

Commit 9ea1fee

Browse files
committed
Refactor.
1 parent fdf9a30 commit 9ea1fee

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

Changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,4 @@ __*Why "v3.0.0" instead of "v1.0.0?"*__ Prior to phpMussel v3, the "phpMussel Co
6969
### v3.6.0
7070

7171
- [2025.10.07]: Added support for NO_COLOR.
72+
- [2025.11.02]: Some minor refactoring.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
},
1313
"require": {
1414
"php": ">=7.2.0 !=7.4.0",
15-
"phpmussel/core": "^3.6.1",
15+
"phpmussel/core": "^3.7.1",
1616
"ext-pcre": "*"
1717
},
1818
"autoload": {

l10n/ko.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# License: GNU/GPLv2
88
# @see LICENSE.txt
99
#
10-
# This file: Korean language data (last modified: 2025.03.30).
10+
# This file: Korean language data (last modified: 2025.10.11).
1111
#
1212
# Regarding translations: My native language is English. Because this is a free
1313
# and open-source hobby project which generates zero income, and translatable
@@ -37,14 +37,14 @@ cli_ln3: |
3737
이름을 입력하고 Enter 키를 누릅니다. CLI 모드 명령 목록을 보려면 "c"를
3838
입력하고 Enter 키를 누릅니다. "q"를 입력하고 Enter 키를 눌러 종료합니다.
3939
%s is not a file or directory: "%s는 파일 또는 디렉토리가 아닙니다."
40-
Entropy: "엔트로피\_:"
41-
Filename: "파일 이름\_:"
40+
Entropy: "엔트로피:"
41+
Filename: "파일 이름:"
4242
I don_t understand that command, sorry: "미안 해요, 명령을 이해할 수 없습니다."
4343
In progress: "처리 중"
4444
Invalid URL: "유효하지 않은 URL!"
45-
Last modified: "마지막 수정\_:"
45+
Last modified: "마지막 수정:"
4646
Not a valid PE file: "올바른 PE 파일이 없습니다!"
47-
PE Sections: "PE 섹션\_:"
47+
PE Sections: "PE 섹션:"
4848
Specified algorithm isn_t supported: "지정된 알고리즘은 지원되지 않습니다."
4949
YOUR SIGNATURE NAME: "서명-이름"
5050
cli_commands: |

src/CLI.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* License: GNU/GPLv2
99
* @see LICENSE.txt
1010
*
11-
* This file: CLI handler (last modified: 2025.10.07).
11+
* This file: CLI handler (last modified: 2025.11.02).
1212
*/
1313

1414
namespace phpMussel\CLI;
@@ -85,7 +85,7 @@ public function __construct(\phpMussel\Core\Loader &$Loader, \phpMussel\Core\Sca
8585
});
8686

8787
/** Echo the ASCII header art and CLI-mode information. */
88-
echo $this->Scanner->cliColour("\033[0;33m") . sprintf($this->Loader->L10N->getString('cli_ln1'), PHP_VERSION, $this->Loader->ScriptVersion, $this->CLIVersion) . "\n\n" . $this->Loader->L10N->getString('cli_ln2') . "\n\n" . $this->Loader->L10N->getString('cli_ln3');
88+
echo $this->Scanner->cliColour("\033[0;33m") . sprintf($this->Loader->L10N->getString('cli_ln1'), \PHP_VERSION, $this->Loader->ScriptVersion, $this->CLIVersion) . "\n\n" . $this->Loader->L10N->getString('cli_ln2') . "\n\n" . $this->Loader->L10N->getString('cli_ln3');
8989

9090
/** Open STDIN. */
9191
$Handle = fopen('php://stdin', 'rb');

0 commit comments

Comments
 (0)