Appzcoder\CrudGenerator\Commands\CrudMigrationCommand::replaceSchemaDown PHP Метод

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

Replace the schema_down for the given stub.
protected replaceSchemaDown ( string &$stub, string $schemaDown )
$stub string
$schemaDown string
    protected function replaceSchemaDown(&$stub, $schemaDown)
    {
        $stub = str_replace('{{schema_down}}', $schemaDown, $stub);
        return $this;
    }