Skip to content

Commit 7f2b1f6

Browse files
Merge pull request #132 from TheDragonCode/4.x
Replace `warning` messages with `info`
2 parents da8e69c + 7c42de4 commit 7f2b1f6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Processors/Install.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Install extends Processor
1313
public function handle(): void
1414
{
1515
if ($this->exists()) {
16-
$this->notification->warning('Actions repository already exists');
16+
$this->notification->info('Actions repository already exists');
1717

1818
return;
1919
}

src/Processors/Rollback.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ protected function rollbackAction(string $action): void
5959
protected function nothingToRollback(): bool
6060
{
6161
if ($this->count() <= 0) {
62-
$this->notification->warning('Nothing To Rollback');
62+
$this->notification->info('Nothing To Rollback');
6363

6464
return true;
6565
}

0 commit comments

Comments
 (0)