<?php
namespace App\Komma\Documents\Kms;
use App\Komma\Documents\Models\Document;
use Illuminate\Database\Eloquent\Relations\MorphMany;
/**
* Interface DocumentInterface
*
* Represents something that has documents
*
* @see Document
* @see DocumentService
* @package App\Komma\Documents\Kms
*/
interface DocumentableInterface
{
public function documents():MorphMany;
}