<?php

namespace Photo\Photo\Repositories\Eloquent;

use Photo\Photo\Interfaces\ProductRepositoryInterface;

class ProductRepository extends BaseRepository implements ProductRepositoryInterface
{
    /**
     * Specify Model class name.
     *
     * @return string
     */
    public function model()
    {
        return config('photo.product.model');
    }
}