AsgardCms/Media

View on GitHub
Contracts/DeletingMedia.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php namespace Modules\Media\Contracts;

interface DeletingMedia
{
    /**
     * Get the entity ID
     * @return int
     */
    public function getEntityId();

    /**
     * Get the class name the imageables
     * @return string
     */
    public function getClassName();
}