Appzcoder\CrudGenerator\Commands\CrudModelCommand::replacePrimaryKey PHP Method

replacePrimaryKey() protected method

Replace the primary key for the given stub.
protected replacePrimaryKey ( string &$stub, string $primaryKey )
$stub string
$primaryKey string
    protected function replacePrimaryKey(&$stub, $primaryKey)
    {
        $stub = str_replace('{{primaryKey}}', $primaryKey, $stub);
        return $this;
    }