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

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

If $oldPath ends with a * everything starting with $oldPath will be moved into $newPath (which then is created as a directory, if it does not yet exist).
protected moveFile ( string $oldPath, string $newPath ) : void
$oldPath string
$newPath string
Результат void
    protected function moveFile($oldPath, $newPath)
    {
        $this->operations['moveFile'][] = array($oldPath, $newPath);
    }