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 |
AppliesHeadersInterface.php
01 <?php
02 namespace GuzzleHttp\Message;
03
04 /**
05 * Applies headers to a request.
06 *
07 * This interface can be used with Guzzle streams to apply body specific
08 * headers to a request during the PREPARE_REQUEST priority of the before event
09 *
10 * NOTE: a body that implements this interface will prevent a default
11 * content-type from being added to a request during the before event. If you
12 * want a default content-type to be added, then it will need to be done
13 * manually (e.g., using {@see GuzzleHttp\Mimetypes}).
14 */
15 interface AppliesHeadersInterface
16 {
17 /**
18 * Apply headers to a request appropriate for the current state of the
19 * object.
20 *
21 * @param RequestInterface $request Request
22 */
23 public function applyRequestHeaders(RequestInterface $request);
24 }
25