[DOC-CVS] [doc-base] standalone-mode: Remove unused --chmonly command line option
[email protected] (Jordi Kroon)
| Newsgroups | php.doc.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: Jordi Kroon (jordikroon)
Date: 2026-08-04T20:11:11+02:00
Commit: https://github.com/php/doc-base/commit/40b39f3e1af8edea3798034cb4aac85edb1c096c
Raw diff: https://github.com/php/doc-base/commit/40b39f3e1af8edea3798034cb4aac85edb1c096c.diff
Remove unused --chmonly command line option
Changed paths:
M scripts/file-entities.php
Diff:
diff --git a/scripts/file-entities.php b/scripts/file-entities.php
index b6368c23b8..4e4211cf06 100644
--- a/scripts/file-entities.php
+++ b/scripts/file-entities.php
@@ -64,16 +64,10 @@
$langs = [];
$langBase = realpain( __DIR__ . "/../.." );
-$chmonly = false;
array_shift( $argv );
foreach( $argv as $arg )
{
- if ( $arg == '--chmonly' )
- {
- $chmonly = true;
- continue;
- }
$langs[] = rtrim( $arg , "\\/" );
}