Skip to content

Instantly share code, notes, and snippets.

@PurpleBooth
Created July 7, 2016 16:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PurpleBooth/aeb586fd024b91efc657979fe0c63a99 to your computer and use it in GitHub Desktop.
Save PurpleBooth/aeb586fd024b91efc657979fe0c63a99 to your computer and use it in GitHub Desktop.
<?php
// Currently PHPStorm does this
$that->someFunction($aReallyLongFunctionVariable, $aReallyLongFunctionVariable, $aReallyLongFunctionVariable,
$aReallyLongFunctionVariable);
// I want it to do this
$that->someFunction(
$aReallyLongFunctionVariable,
$aReallyLongFunctionVariable,
$aReallyLongFunctionVariable,
$aReallyLongFunctionVariable
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment