for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* File was created 06.05.2015 22:18
*
* @author Karsten J. Gerber <[email protected]>
*/
namespace PeekAndPoke\Component\Psi\Operation\Intermediate;
use PeekAndPoke\Component\Psi\IntermediateOperation;
use PeekAndPoke\Component\Psi\Solver\IntermediateContext;
* EmptyIntermediateOp
class EmptyIntermediateOp implements IntermediateOperation
{
* {@inheritdoc}
public function apply($input, $index, IntermediateContext $context)
$context->outUseItem = true;
$context->outCanContinue = true;
// return the input unmodified
return $input;
}