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

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

ContainerInterface.php

Zuletzt modifiziert: 02.04.2025, 15:03 - Dateigröße: 1.02 KiB


01  <?php
02   
03  declare(strict_types=1);
04   
05  namespace Psr\Container;
06   
07  /**
08   * Describes the interface of a container that exposes methods to read its entries.
09   */
10  interface ContainerInterface
11  {
12      /**
13       * Finds an entry of the container by its identifier and returns it.
14       *
15       * @param string $id Identifier of the entry to look for.
16       *
17       * @throws NotFoundExceptionInterface  No entry was found for **this** identifier.
18       * @throws ContainerExceptionInterface Error while retrieving the entry.
19       *
20       * @return mixed Entry.
21       */
22      public function get(string $id);
23   
24      /**
25       * Returns true if the container can return an entry for the given identifier.
26       * Returns false otherwise.
27       *
28       * `has($id)` returning true does not mean that `get($id)` will not throw an exception.
29       * It does however mean that `get($id)` will not throw a `NotFoundExceptionInterface`.
30       *
31       * @param string $id Identifier of the entry to look for.
32       *
33       * @return bool
34       */
35      public function has(string $id);
36  }
37