Neos\Flow\Core\Migrations\AbstractMigration::searchAndReplace PHP Метод

searchAndReplace() защищенный Метод

Does a simple search and replace on all (textual) files. The filter array can be used to give file extensions to limit the operation to.
protected searchAndReplace ( string $search, string $replacement, array | string $filter = ['php', 'yaml', 'html'] ) : void
$search string
$replacement string
$filter array | string either an array with file extensions to consider or the full path to a single file to process
Результат void
    protected function searchAndReplace($search, $replacement, $filter = array('php', 'yaml', 'html'))
    {
        $this->operations['searchAndReplace'][] = array($search, $replacement, $filter, false);
    }