Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

formatter is moving type hints in classes #10

Open
desean1625 opened this issue Feb 20, 2020 · 2 comments
Open

formatter is moving type hints in classes #10

desean1625 opened this issue Feb 20, 2020 · 2 comments

Comments

@desean1625
Copy link

Description:
formatter is moving type hints in classes

Failing code:

class Record implements JsonSerializable
{
    public $filename;
    public (float) $number;
    public $recorder;
}

Expected result:

class Record implements JsonSerializable
{
    public $filename;
    public (float) $number;
    public $recorder;
}

Actual result:

class Record implements JsonSerializable {
	public $filename;
	(float) public $number;
	public $recorder;

}
@desean1625
Copy link
Author

PSR2ModifierVisibilityStaticOrder is the pass that is causing it

@mediaworldmax
Copy link

Thanks. Add this to the exclude

"codeformatter_php_options": {
"syntaxes": "php", // Syntax names which must process PHP formatter
"php_path": "C:/source/php-7.4.32-nts-Win32-vc15-x64/php.exe", // Path for PHP executable, e.g. "/usr/lib/php" or "C:/Program Files/PHP/php.exe". If empty, uses command "php" from system environments
"format_on_save": false, // Format on save. Either a boolean (true/false) or a string regexp tested on filename. Example : "^((?!.min.|vendor).)*$"
"psr1": false, // Activate PSR1 style
"psr1_naming": false, // Activate PSR1 style - Section 3 and 4.3 - Class and method names case
"psr2": true, // Activate PSR2 style
"indent_with_space": 4, // Use spaces instead of tabs for indentation
"enable_auto_align": true, // Enable auto align of = and =>
"visibility_order": true, // Fixes visibility order for method in classes - PSR-2 4.2
"smart_linebreak_after_curly": true, // Convert multistatement blocks into multiline blocks
// Enable specific transformations. Example: ["ConvertOpenTagWithEcho", "PrettyPrintDocBlocks"]
// You can list all available transformations from command palette: CodeFormatter: Show PHP Transformations
// You can also see examples of many transformations at https://github.com/akalongman/sublimetext-codeformatter/blob/master/PHP-Transformations.md
"passes": [],
// Disable specific transformations
"excludes": ["PSR2ModifierVisibilityStaticOrder"],
"max_preserve_newlines": 3
},

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants