Neos\Flow\Core\Migrations\Version20161124204700::up PHP Метод

up() публичный Метод

public up ( ) : void
Результат void
    public function up()
    {
        $this->searchAndReplace('TYPO3\\Flow', 'Neos\\Flow');
        $this->searchAndReplace('TYPO3.Flow', 'Neos.Flow');
        $this->searchAndReplace('typo3/flow', 'neos/flow');
        $this->searchAndReplace('typo3-flow-framework', 'neos-framework');
        $this->searchAndReplace('typo3-flow-package', 'neos-package');
        $this->searchAndReplace('typo3-flow-site', 'neos-site');
        $this->searchAndReplace('typo3-flow-plugin', 'neos-plugin');
        $this->moveSettingsPaths('TYPO3.Flow', 'Neos.Flow');
    }
Version20161124204700