Viewing File: /opt/alt/tests/alt-php83-pecl-psr_1.2.0-1.el8/tests/SampleStoppableEvent.inc

<?php

use Psr\EventDispatcher\StoppableEventInterface;

class SampleStoppableEvent implements StoppableEventInterface
{
    public function isPropagationStopped(): bool
    {
        var_dump(__METHOD__);

        return true;
    }
}
Back to Directory File Manager
<