Skip to content

Commit

Permalink
Renaming Traveler to Passable and Stops to Pipes
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasgrimm committed Jan 10, 2025
1 parent 4b9aeae commit f80df6a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/Illuminate/Contracts/Pipeline/Pipeline.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,23 @@
interface Pipeline
{
/**
* Set the traveler object being sent on the pipeline.
* Set the object being sent through the pipeline.
*
* @param mixed $traveler
* @param mixed $passable
* @return $this
*/
public function send($traveler);
public function send($passable);

/**
* Set the stops of the pipeline.
* Set the array of pipes.
*
* @param dynamic|array $stops
* @param array|mixed $pipes
* @return $this
*/
public function through($stops);
public function through($pipes);

/**
* Set the method to call on the stops.
* Set the method to call on the pipes.
*
* @param string $method
* @return $this
Expand Down

0 comments on commit f80df6a

Please sign in to comment.