?iť?

Your IP : 18.191.212.185


Current Path : /home/scgforma/www/cloud/3rdparty/guzzlehttp/guzzle/src/Event/
Upload File :
Current File : /home/scgforma/www/cloud/3rdparty/guzzlehttp/guzzle/src/Event/AbstractEvent.php

<?php
namespace GuzzleHttp\Event;

/**
 * Basic event class that can be extended.
 */
abstract class AbstractEvent implements EventInterface
{
    private $propagationStopped = false;

    public function isPropagationStopped()
    {
        return $this->propagationStopped;
    }

    public function stopPropagation()
    {
        $this->propagationStopped = true;
    }
}