whoami7 - Manager
:
/
proc
/
self
/
root
/
home
/
kckglobal
/
public_html
/
portal
/
vendor
/
league
/
pipeline
/
src
/
Upload File:
files >> //proc/self/root/home/kckglobal/public_html/portal/vendor/league/pipeline/src/PipelineBuilder.php
<?php declare(strict_types=1); namespace League\Pipeline; class PipelineBuilder implements PipelineBuilderInterface { /** * @var callable[] */ private $stages = []; /** * @return self */ public function add(callable $stage): PipelineBuilderInterface { $this->stages[] = $stage; return $this; } public function build(?ProcessorInterface $processor = null): PipelineInterface { return new Pipeline($processor, ...$this->stages); } }
Copyright ©2021 || Defacer Indonesia