Verzeichnisstruktur phpBB-3.1.0


Veröffentlicht
27.10.2014

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

DataCollectorInterface.php

Zuletzt modifiziert: 09.10.2024, 12:58 - Dateigröße: 1.02 KiB


01  <?php
02   
03  /*
04   * This file is part of the Symfony package.
05   *
06   * (c) Fabien Potencier <fabien@symfony.com>
07   *
08   * For the full copyright and license information, please view the LICENSE
09   * file that was distributed with this source code.
10   */
11   
12  namespace Symfony\Component\HttpKernel\DataCollector;
13   
14  use Symfony\Component\HttpFoundation\Request;
15  use Symfony\Component\HttpFoundation\Response;
16   
17  /**
18   * DataCollectorInterface.
19   *
20   * @author Fabien Potencier <fabien@symfony.com>
21   *
22   * @api
23   */
24  interface DataCollectorInterface
25  {
26      /**
27       * Collects data for the given Request and Response.
28       *
29       * @param Request    $request   A Request instance
30       * @param Response   $response  A Response instance
31       * @param \Exception $exception An Exception instance
32       *
33       * @api
34       */
35      public function collect(Request $request, Response $response, \Exception $exception = null);
36   
37      /**
38       * Returns the name of the collector.
39       *
40       * @return string The collector name
41       *
42       * @api
43       */
44      public function getName();
45  }
46