Appzcoder\CrudGenerator\Commands\CrudControllerCommand::replaceModelNamespace PHP Method

replaceModelNamespace() protected method

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