Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 312 Bytes

deleting.md

File metadata and controls

14 lines (10 loc) · 312 Bytes

Deleting

Only persisted image can be deleted.

use Contributte\Imagist\Entity\PersistentImageInterface;use Contributte\Imagist\ImageStorageInterface;

/** @var PersistentImageInterface $image */
$image;
/** @var ImageStorageInterface $imageStorage */
$imageStorage;

$imageStorage->remove($image);