Skip to content

Instantly share code, notes, and snippets.

@manticorp
Created January 31, 2015 10:22
Show Gist options
  • Save manticorp/739f6f6752a9efe9d3ff to your computer and use it in GitHub Desktop.
Save manticorp/739f6f6752a9efe9d3ff to your computer and use it in GitHub Desktop.
PSR2 Method fixing Replacement Regex
<?php
$search = "/( +)((abstract|final)? ?(public|private)? ?(static)?function [^\(]+([^{\n])+)\n+? +?\{/i";
$replace = "$1$2\n$1{";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment