8889841cvendor/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithConsole.php000066600000003233150513064050034147 0ustar00home/clixcotz/mars.clix.co.tzmockConsoleOutput) { return $this->app[Kernel::class]->call($command, $parameters); } return new PendingCommand($this, $this->app, $command, $parameters); } /** * Disable mocking the console output. * * @return $this */ protected function withoutMockingConsoleOutput() { $this->mockConsoleOutput = false; $this->app->offsetUnset(OutputStyle::class); return $this; } }