Файл: gapps/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/BackupCommand.php
Строк: 26
<?php
namespace InterventionImageImagickCommands;
class BackupCommand extends InterventionImageCommandsAbstractCommand
{
/**
* Saves a backups of current state of image core
*
* @param InterventionImageImage $image
* @return boolean
*/
public function execute($image)
{
$backupName = $this->argument(0)->value();
// clone current image resource
$image->setBackup(clone $image->getCore(), $backupName);
return true;
}
}