Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[6.x] Adding a pipes() method (Getter) in Pipeline class #30346

Merged
merged 1 commit into from
Oct 21, 2019
Merged

[6.x] Adding a pipes() method (Getter) in Pipeline class #30346

merged 1 commit into from
Oct 21, 2019

Conversation

arcanedev-maroc
Copy link
Contributor

This change allows to do something more dynamic like:

class BackupAction extends Pipeline
{
    protected function pipes(): array
    {
        return config('actions.backup.tasks', [
            Tasks\SetupPassable::class,
            Tasks\CreateTemporaryDirectory::class,
            Tasks\PrepareFilesToBackup::class,
            Tasks\CreateZipBackupFile::class,
            Tasks\MoveZipArchiveToDisks::class,
            Tasks\SendNotification::class,
        ]);
    }
}

@taylorotwell taylorotwell merged commit 50e47ef into laravel:6.x Oct 21, 2019
@arcanedev-maroc arcanedev-maroc deleted the update-pipeline branch October 21, 2019 13:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants