Currently, we have a script in base with the following:
info$store = Broker::create_clone(info$name,
info$clone_resync_interval,
info$clone_stale_interval,
info$clone_mutation_buffer_interval);
The formatter tries to re-format it to:
info$store = Broker::create_clone(info$name, info$clone_resync_interval,
info$clone_stale_interval, info$clone_mutation_buffer_interval);
I find the first version much more readable. Any other thoughts?
Currently, we have a script in base with the following:
The formatter tries to re-format it to:
I find the first version much more readable. Any other thoughts?