PHP code example of teleport / pipeline
1. Go to this page and download the library: Download teleport/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/ */
teleport / pipeline example snippets
class BazStage implements Teleport\Pipeline\Interfaces\StageInterface
{
public function process($payload)
{
$payload->baz = "my value";
return $payload;
}
}
$pipeline = new Teleport\Pipeline\Pipeline;
$pipeline
->pipe(new Teleport\Pipeline\Stages\JsonDecodeStage)
->pipe(new BazStage)
->pipe(function($payload)
{
$payload->x = "y";
return $payload;
})
->pipe(new Teleport\Pipeline\Stages\JsonEncodeStage);
echo $pipeline->process('{"foo": "bar"}');