Edit File: HasCommands.php
<?php namespace Spatie\LaravelPackageTools\Concerns\Package; trait HasCommands { public array $commands = []; public function hasCommand(string $commandClassName): static { $this->commands[] = $commandClassName; return $this; } public function hasCommands(...$commandClassNames): static { $this->commands = array_merge( $this->commands, collect($commandClassNames)->flatten()->toArray() ); return $this; } }
Back to File Manager