<?php

namespace App\Repositories\Eloquent;

use App\Repositories\Contracts\DocumentoPessoaRepositoryInterface;
use App\Models\DocumentoPessoa;
use Illuminate\Support\Facades\Hash;

class DocumentoPessoaRepository extends AbstractRepository implements DocumentoPessoaRepositoryInterface
{
    protected $model = DocumentoPessoa::class;
}
  
