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\ember\actions\element\traits;
use craft\base\ElementInterface;
use flipbox\ember\actions\traits\Manage as BaseManage;
use yii\base\Model;
* @author Flipbox Factory <[email protected]>
* @since 1.0.0
*
* @method ElementInterface traitRunInternal(ElementInterface $element)
trait Manage
{
use BaseManage {
runInternal as traitRunInternal;
}
* @inheritdoc
* @param ElementInterface $element
abstract protected function performAction(ElementInterface $element): bool;
* @return ElementInterface
protected function runInternal(ElementInterface $element)
return $this->traitRunInternal($element);