Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
gilour
/
laravel
/
framework
/
src
/
Illuminate
/
Contracts
/
Pipeline
:
Hub.php
Advanced Search
Upload
New Item
Settings
-- Select Mode --
-- Select Theme --
-- Select Font Size --
Back
Back Up
Normal Editor
Save
<?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); }