mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 14:14:03 +00:00
Remove redundant type casts
This commit is contained in:
parent
ac34d62383
commit
eeefb17f2a
2 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue