Skip to content

Commit

Permalink
Fix indents in example code in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
devanych committed Oct 28, 2021
1 parent 330dfbf commit 02808bc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -132,11 +132,11 @@ The command can be marked as hidden by prefixing its name with `|`.

```php
'yiisoft/yii-console' => [
'commands' => [
'hello' => Hello::class, // name: 'hello', aliases: [], hidden: false
'start|run|s|r' => Run::class, // name: 'start', aliases: ['run', 's', 'r'], hidden: false
'|hack|h' => Hack::class, // name: 'hack', aliases: ['h'], hidden: true
],
'commands' => [
'hello' => Hello::class, // name: 'hello', aliases: [], hidden: false
'start|run|s|r' => Run::class, // name: 'start', aliases: ['run', 's', 'r'], hidden: false
'|hack|h' => Hack::class, // name: 'hack', aliases: ['h'], hidden: true
],
],
```

Expand Down

0 comments on commit 02808bc

Please sign in to comment.