/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Contracts
/
Pipeline
/
Upload File
HOME
<?php namespace Illuminate\Contracts\Pipeline; interface Hub { /** * Send an object through one of the available pipelines. * * @param mixed $object * @param string|null $pipeline * @return mixed */ public function pipe($object, $pipeline = null); }