for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mcustiel\PowerRoute\Actions;
use Mcustiel\PowerRoute\Common\TransactionData;
class GoToAction implements ActionInterface
{
use PlaceholderEvaluator;
public function execute(TransactionData $transactionData, $argument = null)
$argument->executor->execute(
$this->getValueOrPlaceholder($argument->route, $transactionData),
$transactionData
);
}