Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
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 |
AggregateException.php
01 <?php
02
03 namespace GuzzleHttp\Promise;
04
05 /**
06 * Exception thrown when too many errors occur in the some() or any() methods.
07 */
08 class AggregateException extends RejectionException
09 {
10 public function __construct($msg, array $reasons)
11 {
12 parent::__construct(
13 $reasons,
14 sprintf('%s; %d rejected promises', $msg, count($reasons))
15 );
16 }
17 }
18