Dumplie\SharedKernel\Application\Command\Extension::pre PHP Method

pre() public method

public pre ( Command $command, Dumplie\SharedKernel\Application\ServiceLocator $serviceLocator )
$command Command
$serviceLocator Dumplie\SharedKernel\Application\ServiceLocator
    public function pre(Command $command, ServiceLocator $serviceLocator);

Usage Example

 function it_executes_pre_endpoint_for_matching_commands(Extension $extension, Command $command, ServiceLocator $serviceLocator)
 {
     $extension->expands($command)->willReturn(true);
     $extension->pre($command, $serviceLocator)->shouldBeCalled();
     $this->register($extension);
     $this->pre($command, $serviceLocator);
 }
All Usage Examples Of Dumplie\SharedKernel\Application\Command\Extension::pre