Pantheon\Terminus\Collections\Workflows::allFinished PHP Method

allFinished() public method

Returns all existing workflows that have finished
public allFinished ( ) : Workflow[]
return Workflow[]
    public function allFinished()
    {
        $workflows = array_filter($this->all(), function ($workflow) {
            $is_finished = $workflow->isFinished();
            return $is_finished;
        });
        return $workflows;
    }