rector/packages/FileFormatter/ValueObject/EditorConfigOption.php
Tomas Votruba 7b29fb0f22 Updated Rector to commit f8b0ac301fe9a2c8db3aa5718770ce228550dd2a
f8b0ac301f update to new phpstan rules, add static fixes (#18)
2021-05-11 15:54:06 +00:00

29 lines
534 B
PHP

<?php
declare (strict_types=1);
namespace Rector\FileFormatter\ValueObject;
final class EditorConfigOption
{
/**
* @var string
*/
public const INDENT_STYLE = 'indent_style';
/**
* @var string
*/
public const INDENT_SIZE = 'indent_size';
/**
* @var string
*/
public const END_OF_LINE = 'end_of_line';
/**
* @var string
*/
public const INSERT_FINAL_NEWLINE = 'insert_final_newline';
/**
* @var string
*/
public const TAB_WIDTH = 'tab_width';
}