for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* components
*
* @author Wolfy-J
*/
namespace Spiral\ORM\Commands;
use Spiral\ORM\CommandInterface;
use Spiral\ORM\Transaction;
* Command to handle multiple inner commands.
class TransactionalCommand extends Transaction implements CommandInterface
{
public function execute()
//nothing to do (see getCommands())
}
public function complete()
public function rollBack()