Skip to content

Commit c04bee5

Browse files
committed
Lint fixes
1 parent 1cac12c commit c04bee5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bin/command.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public function gen_api_docs() {
9292
$categories['Misc'][] = $api;
9393
}
9494
}
95-
$out = <<<EOT
95+
$out = <<<'EOT'
9696
# Internal API
9797
9898
WP-CLI includes a number of utilities which are considered stable and meant to be used by commands.
@@ -169,7 +169,7 @@ public function gen_behat_docs() {
169169
$categories['Then'][] = $api;
170170
}
171171
}
172-
$out = <<<EOT
172+
$out = <<<'EOT'
173173
# Behat Steps
174174
175175
WP-CLI makes use of a Behat-based testing framework and provides a set of custom step definitions to write feature tests.
@@ -617,7 +617,7 @@ private static function gen_cmd_pages( $cmd, $parent = [], $verbose = false ) {
617617
$docs = preg_replace( '/=&gt;/', '=>', $docs );
618618
$docs = preg_replace( '/ &amp;&amp; /', ' && ', $docs );
619619

620-
$global_parameters = <<<EOT
620+
$global_parameters = <<<'EOT'
621621
These [global parameters](https://make.wordpress.org/cli/handbook/config/) have the same behavior across all commands and affect how WP-CLI interacts with WordPress.
622622
623623
| **Argument** | **Description** |

0 commit comments

Comments
 (0)