Skip to content

Commit b4cea00

Browse files
committed
commands - renamed "not needed" to "already existed"
1 parent 8452d21 commit b4cea00

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app/Console/Commands/AddCustomRouteContent.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public function handle()
6363

6464
// if the code already exists in the file, abort
6565
if ($this->getLastLineNumberThatContains($code, $file_lines)) {
66-
$this->closeProgressBlock('Not needed', 'yellow');
66+
$this->closeProgressBlock('Already existed', 'yellow');
6767

6868
return;
6969
}

src/app/Console/Commands/AddSidebarContent.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function handle()
6161

6262
// Validate the entry already exists
6363
if ($this->getLastLineNumberThatContains($code, $file_lines)) {
64-
$this->closeProgressBlock('Not needed', 'yellow');
64+
$this->closeProgressBlock('Already existed', 'yellow');
6565

6666
return;
6767
}

0 commit comments

Comments
 (0)