Skip to content

Commit 65caea5

Browse files
committed
Use PHP comments in Default command example in readme instead of Bash comments
1 parent d608baa commit 65caea5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,11 +281,11 @@ By default, running your CLI app without any arguments will show the help screen
281281
```php
282282
$app->add(new InitCommand, 'i', true);
283283

284-
# Alternatively
284+
// Alternatively
285285
$app->command('init', 'Init something', 'i');
286286
$app->defaultCommand('init');
287287

288-
# Retrieve the name of the default command
288+
// Retrieve the name of the default command
289289
$default_command = $app->getDefaultCommand();
290290
```
291291

0 commit comments

Comments
 (0)