File "AbstractEvent.php"
Full path: /home/cakedeco/retaildirectonline.co.uk/system/storage/vendor/guzzlehttp/guzzle/src/Event/AbstractEvent.php
File
size: 377 B (377 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
<?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;
}
}