We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecca77f commit 09c12ebCopy full SHA for 09c12eb
src/Console/Commands/Publish.php
@@ -38,7 +38,7 @@ public function handle(): void
38
['--tag' => $this->option('tag') ?: ['root-compiled']]
39
));
40
41
- $this->info('Root files has been publised.');
+ $this->info('Root files has been published.');
42
}
43
44
/**
tests/Console/PublishTest.php
@@ -11,7 +11,7 @@ class PublishTest extends TestCase
11
public function test_publish_command(): void
12
{
13
$this->artisan('root:publish', ['--packages' => true])
14
- ->expectsOutput('Root files has been publised.')
+ ->expectsOutput('Root files has been published.')
15
->assertExitCode(Command::SUCCESS);
16
17
$this->assertDirectoryExists($this->app->publicPath('vendor/root'));
0 commit comments