artur-graniszewski/pdo-proxy

View on GitHub
src/Event.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace PDOProxy;

class Event implements EventInterface
{
    private $isPropagationStopped = false;
    
    public function stopPropagation()
    {
        $this->isPropagationStopped = true;
    }
    
    public function isPropagationStopped() : bool
    {
        return $this->isPropagationStopped;
    }
}