scratch – Blame information for rev 87

Subversion Repositories:
Rev:
Rev Author Line No. Line
87 office 1 <?php
2  
3 namespace GuzzleHttp\Event;
4  
5 /**
6 * Basic event class that can be extended.
7 */
8 abstract class AbstractEvent implements EventInterface
9 {
10 private $propagationStopped = false;
11  
12 public function isPropagationStopped()
13 {
14 return $this->propagationStopped;
15 }
16  
17 public function stopPropagation()
18 {
19 $this->propagationStopped = true;
20 }
21 }