Skip to content

Commit 45a6e77

Browse files
authored
Merge pull request #575 from wp-cli/danielbachhuber-patch-1
2 parents 404146b + c04bee5 commit 45a6e77

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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** |

contributions/code-review.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ It's best to respond to the issues addressed by the reviewer as quickly as possi
5454

5555
* [Glen Sanford: On code review](http://glen.nu/ramblings/oncodereview.php) - "Pending code reviews represent blocked threads of execution[, code review should always be your top priority]"
5656

57-
* [The Ten Commandments of Egoless Programming](http://www.techrepublic.com/article/the-ten-commandments-of-egoless-programming/) - "Understand and accept that you will make mistakes. The point is to find them early before they make it into production."
57+
* [The Ten Commandments of Egoless Programming](https://blog.codinghorror.com/the-ten-commandments-of-egoless-programming/) - "Understand and accept that you will make mistakes. The point is to find them early before they make it into production."

0 commit comments

Comments
 (0)