1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 16:14:03 +00:00

Remove redundant type casts

This commit is contained in:
Mark 2024-12-29 09:31:45 +01:00
parent ac34d62383
commit eeefb17f2a
No known key found for this signature in database
GPG key ID: 79CFF7869BD39873
2 changed files with 2 additions and 2 deletions

View file

@ -81,7 +81,7 @@ class Migrate extends MigrateCommand
$tenant->run(function ($tenant) use (&$success) {
event(new MigratingDatabase($tenant));
$verbosity = (int) $this->output->getVerbosity();
$verbosity = $this->output->getVerbosity();
if ($this->runningConcurrently) {
// The output gets messy when multiple processes are writing to the same stdout

View file

@ -76,7 +76,7 @@ class Rollback extends RollbackCommand
$tenant->run(function ($tenant) use (&$success) {
event(new RollingBackDatabase($tenant));
$verbosity = (int) $this->output->getVerbosity();
$verbosity = $this->output->getVerbosity();
if ($this->runningConcurrently) {
// The output gets messy when multiple processes are writing to the same stdout