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

replaceFileSnippet() protected method

Replace the file snippet for the given stub
protected replaceFileSnippet ( &$stub, $fileSnippet )
$stub
$fileSnippet
    protected function replaceFileSnippet(&$stub, $fileSnippet)
    {
        $stub = str_replace('{{fileSnippet}}', $fileSnippet, $stub);
        return $this;
    }