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.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

AppliesHeadersInterface.php

Zuletzt modifiziert: 09.10.2024, 12:57 - Dateigröße: 780.00 Bytes


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