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

ParserInterface.php

Zuletzt modifiziert: 02.04.2025, 15:03 - Dateigröße: 1004.00 Bytes


01  <?php
02  /**
03   * Zend Framework (http://framework.zend.com/)
04   *
05   * @link      http://github.com/zendframework/zf2 for the canonical source repository
06   * @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
07   * @license   http://framework.zend.com/license/new-bsd New BSD License
08   */
09   
10  namespace Zend\Code\Annotation\Parser;
11   
12  use Zend\EventManager\EventInterface;
13   
14  interface ParserInterface
15  {
16      /**
17       * Respond to the "createAnnotation" event
18       *
19       * @param  EventInterface  $e
20       * @return false|\stdClass
21       */
22      public function onCreateAnnotation(EventInterface $e);
23   
24      /**
25       * Register an annotation this parser will accept
26       *
27       * @param  mixed $annotation
28       * @return void
29       */
30      public function registerAnnotation($annotation);
31   
32      /**
33       * Register multiple annotations this parser will accept
34       *
35       * @param  array|\Traversable $annotations
36       * @return void
37       */
38      public function registerAnnotations($annotations);
39  }
40