diff --git a/src/Illuminate/Pipeline/Pipeline.php b/src/Illuminate/Pipeline/Pipeline.php index 836d4ee1e3b0..e23cecfaee48 100644 --- a/src/Illuminate/Pipeline/Pipeline.php +++ b/src/Illuminate/Pipeline/Pipeline.php @@ -77,16 +77,6 @@ public function through($pipes) return $this; } - /** - * Get the array of pipes. - * - * @return array - */ - protected function pipes() - { - return $this->pipes; - } - /** * Set the method to call on the pipes. * @@ -208,6 +198,16 @@ protected function parsePipeString($pipe) return [$name, $parameters]; } + /** + * Get the array of configured pipes. + * + * @return array + */ + protected function pipes() + { + return $this->pipes; + } + /** * Get the container instance. *