We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
preserve_breaking_argument_list
Before
$this->renderer = new ChoiceRenderer(multiple: false, default: $default);
After
$this->renderer = new ChoiceRenderer( multiple: false, default: $default, );
$this->sockets = stream_socket_pair(domain: STREAM_PF_UNIX, type: STREAM_SOCK_STREAM, protocol: STREAM_IPPROTO_IP);
$this->sockets = stream_socket_pair( domain: STREAM_PF_UNIX, type: STREAM_SOCK_STREAM, protocol: STREAM_IPPROTO_IP, );
php_version = "8.4.0" [source] paths = ["src"] includes = ["vendor"] excludes = [] [format] print_width = 180 tab_width = 4 use_tabs = false space_after_not_operator = true null_type_hint = "question" space_before_arrow_function_params = true preserve_breaking_member_access_chain = true preserve_breaking_argument_list = true preserve_breaking_array_like = true preserve_breaking_parameter_list = true preserve_breaking_attribute_list = true preserve_breaking_conditional_expression = true [linter] default_plugins = true plugins = ["symfony", "php-unit"]
The text was updated successfully, but these errors were encountered:
This is breaking due to always_break_named_arguments_list being set to true by default, setting it to false fixes the issue you are having.
always_break_named_arguments_list
true
false
ref: #131 (comment)
Sorry, something went wrong.
Makes perfect sense. Thanks for pointing it out!
azjezz
No branches or pull requests
Before
After
Before
After
Config
The text was updated successfully, but these errors were encountered: