Dumplie\SharedKernel\Application\Command\Extension::expands PHP Метод

expands() публичный Метод

public expands ( Command $command ) : boolean
$command Command
Результат boolean
    public function expands(Command $command) : bool;

Usage Example

Пример #1
0
 function it_executes_post_endpoint_for_matching_commands(Extension $extension, Command $command, ServiceLocator $serviceLocator)
 {
     $extension->expands($command)->willReturn(true);
     $extension->post($command, $serviceLocator)->shouldBeCalled();
     $this->register($extension);
     $this->post($command, $serviceLocator);
 }
All Usage Examples Of Dumplie\SharedKernel\Application\Command\Extension::expands