MediaWiki REL1_31
Replacer.php
Go to the documentation of this file.
1<?php
25abstract class Replacer {
29 public function cb() {
30 return [ $this, 'replace' ];
31 }
32
37 abstract public function replace( array $matches );
38}
Base class for "replacers", objects used in preg_replace_callback() and StringUtils::delimiterReplace...
Definition Replacer.php:25
replace(array $matches)