henzeb/laravel-pipeline-factory

View on GitHub
src/Contracts/PipeCondition.php

Summary

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

namespace Henzeb\Pipeline\Contracts;

interface PipeCondition
{
    /**
     * @param $passable
     * @return bool
     */
    public function test($passable): bool;
}