View file vendor/intervention/image/src/Intervention/Image/Imagick/Commands/DestroyCommand.php
<?php namespace Intervention\Image\Imagick\Commands; use Intervention\Image\Commands\AbstractCommand; class DestroyCommand extends AbstractCommand { /** * Destroys current image core and frees up memory * * @param \Intervention\Image\Image $image * @return boolean */ public function execute($image) { // destroy image core $image->getCore()->clear(); // destroy backups foreach ($image->getBackups() as $backup) { $backup->clear(); } return true; } }