for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Shopware\Psh\Application;
class ApplicationOptions
{
const FLAG_NO_HEADER = '--no-header';
public static function getAllFlags(): array
return (new \ReflectionClass(self::class))->getConstants();
}