henzeb/laravel-pipeline-factory

View on GitHub
src/Events/PipeProcessing.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

namespace Henzeb\Pipeline\Events;

use Illuminate\Foundation\Events\Dispatchable;

class PipeProcessing
{
    use Dispatchable;

    public function __construct(
        public string $pipelineId,
        public int $pipeId,
        public string $pipe,
        public mixed $passable
    )
    {
    }
}