Skip to content

Commit

Permalink
[4.0.x] - Correction to the output for API
Browse files Browse the repository at this point in the history
  • Loading branch information
niden committed May 31, 2020
1 parent 68c8f6f commit 645a5a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/_ci/generate-api-docs.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,10 +146,10 @@
$methodComment = trim($methodComment, "\t\n");
$methodComment = preg_replace('/^\/\/$/', '', $methodComment);

$elements[] = $methodComment . PHP_EOL
. '```php' . PHP_EOL
$elements[] = '```php' . PHP_EOL
. $method['signature'] . PHP_EOL
. '```' . PHP_EOL;
. '```' . PHP_EOL
. $methodComment . PHP_EOL . PHP_EOL;
}
$signature = implode(PHP_EOL, $elements);
$output .= "
Expand Down

0 comments on commit 645a5a1

Please sign in to comment.