Skip to content

Commit

Permalink
Merge 58788b8 into a93aeaa
Browse files Browse the repository at this point in the history
  • Loading branch information
sj-i committed Aug 13, 2021
2 parents a93aeaa + 58788b8 commit 054684d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Options:
-r, --max-retries[=MAX-RETRIES] max retries on contiguous errors of read (default: 10)
--php-regex[=PHP-REGEX] regex to find the php binary loaded in the target process
--libpthread-regex[=LIBPTHREAD-REGEX] regex to find the libpthread.so loaded in the target process
--php-version[=PHP-VERSION] php version of the target (default: v74)
--php-version[=PHP-VERSION] php version of the target (default: v80)
--php-path[=PHP-PATH] path to the php binary (only needed in tracing chrooted ZTS target)
--libpthread-path[=LIBPTHREAD-PATH] path to the libpthread.so (only needed in tracing chrooted ZTS target)
-h, --help Display this help message
Expand Down Expand Up @@ -105,7 +105,7 @@ Options:
-r, --max-retries[=MAX-RETRIES] max retries on contiguous errors of read (default: 10)
--php-regex[=PHP-REGEX] regex to find the php binary loaded in the target process
--libpthread-regex[=LIBPTHREAD-REGEX] regex to find the libpthread.so loaded in the target process
--php-version[=PHP-VERSION] php version of the target (default: v74)
--php-version[=PHP-VERSION] php version of the target (default: v80)
--php-path[=PHP-PATH] path to the php binary (only needed in tracing chrooted ZTS target)
--libpthread-path[=LIBPTHREAD-PATH] path to the libpthread.so (only needed in tracing chrooted ZTS target)
-h, --help Display this help message
Expand Down Expand Up @@ -134,7 +134,7 @@ Options:
-r, --max-retries[=MAX-RETRIES] max retries on contiguous errors of read (default: 10)
--php-regex[=PHP-REGEX] regex to find the php binary loaded in the target process
--libpthread-regex[=LIBPTHREAD-REGEX] regex to find the libpthread.so loaded in the target process
--php-version[=PHP-VERSION] php version of the target (default: v74)
--php-version[=PHP-VERSION] php version of the target (default: v80)
--php-path[=PHP-PATH] path to the php binary (only needed in tracing chrooted ZTS target)
--libpthread-path[=LIBPTHREAD-PATH] path to the libpthread.so (only needed in tracing chrooted ZTS target)
-h, --help Display this help message
Expand All @@ -159,7 +159,7 @@ Options:
-p, --pid=PID process id (required)
--php-regex[=PHP-REGEX] regex to find the php binary loaded in the target process
--libpthread-regex[=LIBPTHREAD-REGEX] regex to find the libpthread.so loaded in the target process
--php-version[=PHP-VERSION] php version of the target (default: v74)
--php-version[=PHP-VERSION] php version of the target (default: v80)
--php-path[=PHP-PATH] path to the php binary (only needed in tracing chrooted ZTS target)
--libpthread-path[=LIBPTHREAD-PATH] path to the libpthread.so (only needed in tracing chrooted ZTS target)
-h, --help Display this help message
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ final class TargetPhpSettingsException extends InspectorSettingsException
self::LIBPTHREAD_REGEX_IS_NOT_STRING => 'libpthread-regex must be a string',
self::PHP_PATH_IS_NOT_STRING => 'php-path must be a string',
self::LIBPTHREAD_PATH_IS_NOT_STRING => 'libpthread-path must be a string',
self::TARGET_PHP_VERSION_INVALID => 'php-version must be valid version string (eg: v74)',
self::TARGET_PHP_VERSION_INVALID => 'php-version must be valid version string (eg: v80)',
];
}
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function setOptions(Command $command): void
'php-version',
null,
InputOption::VALUE_OPTIONAL,
'php version of the target (default: v74)'
'php version of the target (default: v80)'
)
->addOption(
'php-path',
Expand Down

0 comments on commit 054684d

Please sign in to comment.