Skip to content
This repository was archived by the owner on Jul 8, 2024. It is now read-only.

Commit 8c2f416

Browse files
committed
cs fix
1 parent 0b14524 commit 8c2f416

16 files changed

Lines changed: 304 additions & 145 deletions

composer.lock

Lines changed: 278 additions & 119 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Bowerphp/Command/CommandListCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ protected function configure()
3131
->setName('list-commands')
3232
->setDefinition($this->createDefinition())
3333
->setDescription('Lists commands')
34-
->setHelp(<<<EOF
34+
->setHelp(<<<'EOF'
3535
The <info>%command.name%</info> command lists all commands:
3636
3737
<info>php %command.full_name%</info>

src/Bowerphp/Command/HelpCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ protected function configure()
3737
new InputOption('raw', null, InputOption::VALUE_NONE, 'To output raw command help'),
3838
])
3939
->setDescription('Displays help for a command')
40-
->setHelp(<<<EOF
40+
->setHelp(<<<'EOF'
4141
The <info>%command.name%</info> command displays help for a given command:
4242
4343
<info>php %command.full_name% list</info>

src/Bowerphp/Command/HomeCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ protected function configure()
3232
->setName('home')
3333
->setDescription('Opens a package homepage into your favorite browser')
3434
->addArgument('package', InputArgument::REQUIRED, 'Choose a package.')
35-
->setHelp(<<<EOT
35+
->setHelp(<<<'EOT'
3636
The <info>%command.name%</info> command opens a package homepage into your favorite browser.
3737
3838
<info>php %command.full_name% name</info>

src/Bowerphp/Command/InfoCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ protected function configure()
3232
->setDescription('Displays overall information of a package or of a particular version')
3333
->addArgument('package', InputArgument::REQUIRED, 'Choose a package.')
3434
->addArgument('property', InputArgument::OPTIONAL, 'A property present in bower.json.')
35-
->setHelp(<<<EOT
35+
->setHelp(<<<'EOT'
3636
The <info>%command.name%</info> command displays overall information of a package or of a particular version.
3737
If you pass a property present in bower.json, you can get the correspondent value.
3838

src/Bowerphp/Command/InitCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ protected function configure()
2727
$this
2828
->setName('init')
2929
->setDescription('Initializes a bower.json file')
30-
->setHelp(<<<EOT
30+
->setHelp(<<<'EOT'
3131
The <info>%command.name%</info> command initializes a bower.json file in
3232
the current directory.
3333

src/Bowerphp/Command/InstallCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ protected function configure()
3636
->setDescription('Installs the project dependencies from the bower.json file or a single specified package')
3737
->addOption('save', 'S', InputOption::VALUE_NONE, 'Add installed package to bower.json file.')
3838
->addArgument('package', InputArgument::OPTIONAL, 'Choose a package.')
39-
->setHelp(<<<EOT
39+
->setHelp(<<<'EOT'
4040
The <info>%command.name%</info> command reads the bower.json file from
4141
the current directory, processes it, and downloads and installs all the
4242
libraries and dependencies outlined in that file.

src/Bowerphp/Command/ListCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ protected function configure()
3232
$this
3333
->setName('list')
3434
->setDescription('Lists installed packages')
35-
->setHelp(<<<EOT
35+
->setHelp(<<<'EOT'
3636
The <info>%command.name%</info> lists installed packages.
3737
3838
<info>%command.full_name%</info>

src/Bowerphp/Command/LookupCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ protected function configure()
3030
->setName('lookup')
3131
->setDescription('Look up a package URL by name')
3232
->addArgument('package', InputArgument::REQUIRED, 'Choose a package.')
33-
->setHelp(<<<EOT
33+
->setHelp(<<<'EOT'
3434
The <info>%command.name%</info> command is used for search with exact match the repository URL package
3535
3636
<info>php %command.full_name% packageName</info>

src/Bowerphp/Command/SearchCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ protected function configure()
2929
->setName('search')
3030
->setDescription('Search for a package by name')
3131
->addArgument('name', InputArgument::REQUIRED, 'Name to search for.')
32-
->setHelp(<<<EOT
32+
->setHelp(<<<'EOT'
3333
The <info>%command.name%</info> command searches for a package by name.
3434
3535
<info>php %command.full_name% name</info>

0 commit comments

Comments
 (0)