rector/vendor/symplify/package-builder/src/ValueObject/Option.php
2022-09-01 09:30:44 +00:00

19 lines
291 B
PHP

<?php
declare (strict_types=1);
namespace RectorPrefix202209\Symplify\PackageBuilder\ValueObject;
final class Option
{
/**
* @api
* @var string
*/
public const CONFIG = 'config';
/**
* @api
* @var string
*/
public const SOURCES = 'sources';
}