Skip to content

Commit 13f8693

Browse files
committed
change tense is some of the outputs so it's consisent
1 parent 6bcc66f commit 13f8693

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Console/Commands/ConfigBackpackCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public function fire()
6767
$path = $this->getPath($name);
6868

6969
if ($this->alreadyExists($this->getNameInput())) {
70-
$this->error($this->type.' already exists!');
70+
$this->error($this->type.' already existed!');
7171

7272
return false;
7373
}

src/Console/Commands/CrudModelBackpackCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public function handle()
130130
}
131131

132132
// In case we couldn't add the CrudTrait
133-
$this->error("Model already exists on '$name' and we couldn't add CrudTrait. Please add it manually.");
133+
$this->error("Model already existed on '$name' and we couldn't add CrudTrait. Please add it manually.");
134134
}
135135
}
136136

src/Console/Commands/ViewBackpackCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function fire()
7171
$path = $this->getPath($name);
7272

7373
if ($this->alreadyExists($this->getNameInput())) {
74-
$this->error($this->type.' already exists!');
74+
$this->error($this->type.' already existed!');
7575

7676
return false;
7777
}

0 commit comments

Comments
 (0)