Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Console/EditorConfigCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@

class EditorConfigCommand extends Command
{
protected function configure(): Command
protected function configure(): void
{
return $this
$this
->setName('editorconfig')
->setDescription('Publishes the .editorconfig file')
->addOption('path', 'p', InputOption::VALUE_OPTIONAL, 'Path to publish files', realpath('.'));
Expand Down
4 changes: 2 additions & 2 deletions src/Console/NpmCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@

class NpmCommand extends Command
{
protected function configure(): Command
protected function configure(): void
{
return $this
$this
->setName('npm')
->setDescription('Publishes the biome.json file')
->addOption('path', 'p', InputOption::VALUE_OPTIONAL, 'Path to publish files', realpath('.'));
Expand Down
4 changes: 2 additions & 2 deletions src/Console/PintCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@

class PintCommand extends Command
{
protected function configure(): Command
protected function configure(): void
{
return $this
$this
->setName('pint')
->setDescription('Publishes presets for the Laravel Pint')
->addArgument('preset', InputArgument::REQUIRED, 'The name of the preset')
Expand Down
4 changes: 2 additions & 2 deletions src/Console/RectorCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@

class RectorCommand extends Command
{
protected function configure(): Command
protected function configure(): void
{
return $this
$this
->setName('rector')
->setDescription('Publishes presets for the Rector')
->addArgument('preset', InputArgument::REQUIRED, 'The name of the preset')
Expand Down
Loading