<?php
namespace App\Categories\Kms;
use Illuminate\Database\Eloquent\Relations\MorphToMany;
/**
* Represents something that can be categorized
*
* @property int $id
*/
interface CategorizableInterface
{
/**
* We belong to many categories
*
* @return MorphToMany
*/
public function categories():MorphToMany;
}