#!/usr/bin/env php add(new CreateStubsCommand()); $application->add(new ExportSchemaCommand()); $application->add(new DumpSchemasCommand()); try { $exitCode = $application->run(); } catch (Throwable $e) { echo $e->getMessage() . PHP_EOL; } exit($exitCode ?? 1);