Files
redline.com.pl/modules/pshowlazyimg/vendor/guzzlehttp/guzzle/src/Event/AbstractEvent.php
2024-11-11 18:46:54 +01:00

21 lines
377 B
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;
}
}