for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @copyright Copyright (c) Flipbox Digital Limited
* @license https://github.com/flipboxfactory/craft-ember/blob/master/LICENSE
* @link https://github.com/flipboxfactory/craft-ember/
*/
namespace flipbox\craft\ember\actions\records;
use yii\base\Action;
use yii\db\ActiveRecord;
* @author Flipbox Factory <[email protected]>
* @since 2.0.0
abstract class DeleteRecord extends Action
{
use DeleteRecordTrait, LookupRecordTrait;
* @param ActiveRecord $record
* @return bool
* @throws \Throwable
* @throws \yii\db\StaleObjectException
protected function performAction(ActiveRecord $record): bool
return $record->delete();
}