The app function returns the service container instance:
<?php $container = app();
<?php         $this->checkFlareKey();



        if (app()->make('log') instanceof LogManager) {

            $this->checkFlareLogger();

        }
<?php         $testException = new Exception('This is an exception to test if the integration with Flare works.');



        try {

            app(Flare::class)->sendTestReport($testException);

            $this->info(PHP_EOL);

        } catch (Exception $exception) {

            $this->warn('❌ We were unable to send an exception to Flare. Make sure that your key is correct and that you have a valid subscription. '.PHP_EOL.PHP_EOL.'For more info visit the docs on installing Flare in a Laravel project: https://flareapp.io/docs/ignition-for-laravel/introduction');
<?php {

    public function detectCurrentContext(): ContextInterface

    {

        if (app()->runningInConsole()) {

            return new LaravelConsoleContext($_SERVER['argv'] ?? []);

        }
<?php             return new LaravelConsoleContext($_SERVER['argv'] ?? []);

        }



        return new LaravelRequestContext(app(Request::class));

    }

}
<?php         call_user_func_array('dump', $args);



        $handler = app(\Facade\Ignition\ErrorPage\ErrorPageHandler::class);



        $client = app()->make(Flare::class);
<?php         $handler = app(\Facade\Ignition\ErrorPage\ErrorPageHandler::class);



        $client = app()->make(Flare::class);



        $report = $client->createReportFromMessage('Dump, Die, Debug', 'info');
<?php     public function ensureLocalEnvironment()

    {

        if (! app()->environment('local')) {

            abort(403, "Runnable solutions are disabled in non-local environments. Please make sure `APP_ENV` is set correctly. Additionally please make sure `APP_DEBUG` is set to false on ANY production environment!");

        }

    }
<?php         $output = Artisan::output();



        return Str::contains($output, app()->version());

    }

}
<?php     public function getSolution(): Solution

    {

        $solution = app(SolutionProviderRepository::class)

            ->getSolutionForClass($this->get('solution'));



        abort_if(is_null($solution), 404, 'Solution could not be found');
<?php     public function getEnableShareButton(): bool

    {

        if (! app()->isBooted()) {

            return false;

        }
<?php {

    public function handle(Report $report, $next)

    {

        $report->frameworkVersion(app()->version());



        $report->group('env', [

            'laravel_version' => app()->version(),
<?php         $report->frameworkVersion(app()->version());



        $report->group('env', [

            'laravel_version' => app()->version(),

            'laravel_locale' => app()->getLocale(),

            'laravel_config_cached' => app()->configurationIsCached(),

            'php_version' => phpversion(),
<?php         $report->group('env', [

            'laravel_version' => app()->version(),

            'laravel_locale' => app()->getLocale(),

            'laravel_config_cached' => app()->configurationIsCached(),

            'php_version' => phpversion(),

        ]);
<?php         $report->group('env', [

            'laravel_version' => app()->version(),

            'laravel_locale' => app()->getLocale(),

            'laravel_config_cached' => app()->configurationIsCached(),

            'php_version' => phpversion(),

        ]);
<?php     protected function findRelatedController(string $invalidController): ?string

    {

        $composerClassMap = app(ComposerClassMap::class);



        $controllers = collect($composerClassMap->listClasses())

            ->filter(function (string $file, string $fqcn) {