Appzcoder\CrudGenerator\Commands\CrudMigrationCommand::replaceSchemaUp PHP Method

replaceSchemaUp() protected method

Replace the schema_up for the given stub.
protected replaceSchemaUp ( string &$stub, string $schemaUp )
$stub string
$schemaUp string
    protected function replaceSchemaUp(&$stub, $schemaUp)
    {
        $stub = str_replace('{{schema_up}}', $schemaUp, $stub);
        return $this;
    }