Skip to content

Instantly share code, notes, and snippets.

@zored
Last active March 28, 2017 15:34
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 zored/8ffde76c8ec1617756de6156b2c63218 to your computer and use it in GitHub Desktop.
Save zored/8ffde76c8ec1617756de6156b2c63218 to your computer and use it in GitHub Desktop.
Convert comments to one-line when possible.
#!/usr/bin/env php
<?php
$path = $argv[1];
if (empty($path)) {
echo "Path is not set.";
exit(1);
}
file_put_contents(
$path,
preg_replace(
'#/\*\*?\s*\n\s*\*\s*(.*)\n\s*\*/#',
'/** $1 */',
file_get_contents($path)
)
);
echo "Ok! $path";
exit(0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment