Verzeichnisstruktur phpBB-3.2.0
- Veröffentlicht
- 06.01.2017
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
AbstractEvent.php
01 <?php
02 namespace GuzzleHttp\Event;
03
04 /**
05 * Basic event class that can be extended.
06 */
07 abstract class AbstractEvent implements EventInterface
08 {
09 private $propagationStopped = false;
10
11 public function isPropagationStopped()
12 {
13 return $this->propagationStopped;
14 }
15
16 public function stopPropagation()
17 {
18 $this->propagationStopped = true;
19 }
20 }
21