Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
iamgergo committed Nov 13, 2024
1 parent ecca77f commit 09c12eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Console/Commands/Publish.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function handle(): void
['--tag' => $this->option('tag') ?: ['root-compiled']]
));

$this->info('Root files has been publised.');
$this->info('Root files has been published.');
}

/**
Expand Down
2 changes: 1 addition & 1 deletion tests/Console/PublishTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class PublishTest extends TestCase
public function test_publish_command(): void
{
$this->artisan('root:publish', ['--packages' => true])
->expectsOutput('Root files has been publised.')
->expectsOutput('Root files has been published.')
->assertExitCode(Command::SUCCESS);

$this->assertDirectoryExists($this->app->publicPath('vendor/root'));
Expand Down

0 comments on commit 09c12eb

Please sign in to comment.