...
Replace This | With This | Is Regular Expression | Replace Options |
---|---|---|---|
Array ( | array( | no | case sensitive, match whole words |
array ( | array( | no | case sensitive, match whole words |
Array( | array( | no | case sensitive, match whole words |
@param kEvent $event | @param kEvent $event Event. | no | case sensitive, match whole words |
[\t]+ \* @access protected\n | yes | ||
=> NULL | => null | no | case sensitive, match whole words |
\tclass | manually remove 1 indention level | ||
class (.*?) extends (.*?) \{ | class $1 extends $2\n\{ | yes | |
@param Array | @param array | no, but notice space at the end | |
* @param int | * @param integer | no, but notice space at the end | |
(\* @param array \$params)\n | $1 Tag params\.\n | yes |
P.S.
In fact I've developed a coding standard already, but it's not mature yet to be released.
...