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. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
NullLogger.php
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\Log;
13
14 use Psr\Log\NullLogger as PsrNullLogger;
15
16 /**
17 * NullLogger.
18 *
19 * @author Fabien Potencier <fabien@symfony.com>
20 *
21 * @api
22 */
23 class NullLogger extends PsrNullLogger implements LoggerInterface
24 {
25 /**
26 * @api
27 * @deprecated since 2.2, to be removed in 3.0. Use emergency() which is PSR-3 compatible.
28 */
29 public function emerg($message, array $context = array())
30 {
31 }
32
33 /**
34 * @api
35 * @deprecated since 2.2, to be removed in 3.0. Use critical() which is PSR-3 compatible.
36 */
37 public function crit($message, array $context = array())
38 {
39 }
40
41 /**
42 * @api
43 * @deprecated since 2.2, to be removed in 3.0. Use error() which is PSR-3 compatible.
44 */
45 public function err($message, array $context = array())
46 {
47 }
48
49 /**
50 * @api
51 * @deprecated since 2.2, to be removed in 3.0. Use warning() which is PSR-3 compatible.
52 */
53 public function warn($message, array $context = array())
54 {
55 }
56 }
57