We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7186be3 commit 91c09e6Copy full SHA for 91c09e6
1 file changed
src/ParameterProvider.php
@@ -95,7 +95,7 @@ private function populateParametersFromKey() {
95
96
if ( $paramMsg->exists() ) {
97
98
- $paramLines = preg_replace( '/^\s*\*\s*/', '', explode( "\n", preg_replace( '/^[\s\n]*<!--[\s\S]*?-->[\s\n]*/', '', $paramMsg->plain() ) ) );
+ $paramLines = preg_replace( '/^\*\s*/', '', explode( "\n", preg_replace( '/^[\s\n]*<!--[\s\S]*?-->[\s\n]*/', '', $paramMsg->plain() ) ) );
99
$paramSet = array_map( [ $this, 'parseParamLine' ], $paramLines );
100
$paramMap = array_combine( array_column( $paramSet, 0 ), $paramSet );
101
0 commit comments