What is the Pipeline Pattern in League\Pipeline
masterThe Pipeline Pattern is an architectural pattern that encapsulates sequential processes. It functions like a production line where a payload (or subject) is passed through a series of stages. Each stage can perform specific operations such as acting on, manipulating, decorating, or replacing the payload.
Use this package when you find yourself manually passing the results of one function into another to complete a series of tasks on a single subject. This implementation allows you to mix and match individual operations and pipelines to create flexible execution chains.