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

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

This expects a fully qualified class name, so proper refactoring can be done.
protected renameMethod ( string $className, string $oldMethodName, string $newMethodName, boolean $withInheritance = true ) : void
$className string the class that contains the method to be renamed
$oldMethodName string the method to be renamed
$newMethodName string the new method name
$withInheritance boolean if true, also rename method on child classes
Результат void
    protected function renameMethod($className, $oldMethodName, $newMethodName, $withInheritance = true)
    {
        throw new \LogicException('renameMethod is not yet implemented, sorry!', 1479293733);
    }