?? GreyFile — Mystic File Browser

Current path: home/webdevt/prestashop17/vendor/guzzlehttp/guzzle/src/Event/



?? Go up: /home/webdevt/prestashop17/vendor/guzzlehttp/guzzle/src

?? Viewing: 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;
    }
}


??

??