🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-15 07:17:43 | PHP 8.1.34
📂
/ (Root)
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
vendor
/
illuminate
/
contracts
/
Pipeline
📍 /opt/cpanel/ea-wappspector/vendor/rector/rector/vendor/illuminate/contracts/Pipeline
🔄 Refresh
✏️
Editing: Pipeline.php
Read Only
<?php namespace RectorPrefix202411\Illuminate\Contracts\Pipeline; use Closure; interface Pipeline { /** * Set the traveler object being sent on the pipeline. * * @param mixed $traveler * @return $this */ public function send($traveler); /** * Set the stops of the pipeline. * * @param dynamic|array $stops * @return $this */ public function through($stops); /** * Set the method to call on the stops. * * @param string $method * @return $this */ public function via($method); /** * Run the pipeline with a final destination callback. * * @param \Closure $destination * @return mixed */ public function then(Closure $destination); }
💾 Save Changes
❌ Cancel