Appzcoder\CrudGenerator\Commands\CrudModelCommand::replaceTable PHP Метод

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

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