PHP code example of nicwortel / command-pipeline
1. Go to this page and download the library: Download nicwortel/command-pipeline library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
nicwortel / command-pipeline example snippets
// config/bundles.php
return [
// ...
NicWortel\CommandPipeline\Bundle\CommandPipelineBundle::class => ['all' => true],
];
declare(strict_types=1);
use NicWortel\CommandPipeline\CommandPipeline;
// ...
class MyController
{
private CommandPipeline $commandPipeline;
public function __construct(CommandPipeline $commandPipeline)
{
$this->commandPipeline = $commandPipeline;
}
public function saveAction(): Response
{
$command = new MyCommand();
$command->foo = 'bar';
$this->commandPipeline->process($command);
// ...
}
}