#!/usr/bin/env php addCommand(new LintDocsCommand($differ, new CompositeLinter( new AssertionMessageLinter(), new ValidatorHeaderLinter(), new ValidatorIndexLinter(), new ValidatorRelatedLinter(), new ValidatorTemplatesLinter(), new ValidatorChangelogLinter(), ))); $application->addCommand(new LintMixinCommand($differ)); $application->addCommand(new LintSpdxCommand($differ)); $application->addCommand(new UpdateDomainSuffixesCommand($dataSaver)); $application->addCommand(new UpdateDomainToplevelCommand($dataSaver)); $application->addCommand(new UpdatePostalCodesCommand($dataSaver)); $application->addCommand(new SmokeTestsCheckCompleteCommand()); return $application->run(); })();