Skip to content
This repository has been archived by the owner on Sep 12, 2022. It is now read-only.

Commit

Permalink
#45 Add getStages method to Pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian Kleinhans committed Dec 13, 2016
1 parent f8602ea commit 27d0d9b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/StackFormation/Helper/Pipeline.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@ public function addStage(callable $stage)
return $this;
}

/**
* @return \callable[]
*/
public function getStages()
{
return $this->stages;
}

/**
* Process the payload.
*
Expand Down

0 comments on commit 27d0d9b

Please sign in to comment.