Neos\Flow\Core\Migrations\AbstractMigration::showNote PHP Method

showNote() protected method

If changes cannot be automated or something needs to be adjusted manually for other reasons, leave a note for the developer. The notes will be shown together after migrations have been run.
See also: showWarning
protected showNote ( string $note ) : void
$note string
return void
    protected function showNote($note)
    {
        $this->notes[md5($note)] = $note;
    }