Vous êtes connecté en tant que anonymous Se Deconnecter
Browse code

Application modulaire fonctionnelle !

Emmanuel ROY authored on 12/08/2019 15:10:25
Showing 1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,60 +0,0 @@
1
-<?php
2
-
3
-/*
4
- * This file is part of the Symfony package.
5
- *
6
- * (c) Fabien Potencier <fabien@symfony.com>
7
- *
8
- * For the full copyright and license information, please view the LICENSE
9
- * file that was distributed with this source code.
10
- */
11
-
12
-namespace Symfony\Component\Debug;
13
-
14
-/**
15
- * Registers all the debug tools.
16
- *
17
- * @author Fabien Potencier <fabien@symfony.com>
18
- */
19
-class Debug
20
-{
21
-    private static $enabled = false;
22
-
23
-    /**
24
-     * Enables the debug tools.
25
-     *
26
-     * This method registers an error handler and an exception handler.
27
-     *
28
-     * @param int  $errorReportingLevel The level of error reporting you want
29
-     * @param bool $displayErrors       Whether to display errors (for development) or just log them (for production)
30
-     */
31
-    public static function enable($errorReportingLevel = E_ALL, $displayErrors = true)
32
-    {
33
-        if (static::$enabled) {
34
-            return;
35
-        }
36
-
37
-        static::$enabled = true;
38
-
39
-        if (null !== $errorReportingLevel) {
40
-            error_reporting($errorReportingLevel);
41
-        } else {
42
-            error_reporting(E_ALL);
43
-        }
44
-
45
-        if (!\in_array(\PHP_SAPI, ['cli', 'phpdbg'], true)) {
46
-            ini_set('display_errors', 0);
47
-            ExceptionHandler::register();
48
-        } elseif ($displayErrors && (!filter_var(ini_get('log_errors'), FILTER_VALIDATE_BOOLEAN) || ini_get('error_log'))) {
49
-            // CLI - display errors only if they're not already logged to STDERR
50
-            ini_set('display_errors', 1);
51
-        }
52
-        if ($displayErrors) {
53
-            ErrorHandler::register(new ErrorHandler(new BufferingLogger()));
54
-        } else {
55
-            ErrorHandler::register()->throwAt(0, true);
56
-        }
57
-
58
-        DebugClassLoader::enable();
59
-    }
60
-}
Browse code

initial commit

Emmanuel ROY authored on 09/08/2019 08:39:02
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,60 @@
1
+<?php
2
+
3
+/*
4
+ * This file is part of the Symfony package.
5
+ *
6
+ * (c) Fabien Potencier <fabien@symfony.com>
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+
12
+namespace Symfony\Component\Debug;
13
+
14
+/**
15
+ * Registers all the debug tools.
16
+ *
17
+ * @author Fabien Potencier <fabien@symfony.com>
18
+ */
19
+class Debug
20
+{
21
+    private static $enabled = false;
22
+
23
+    /**
24
+     * Enables the debug tools.
25
+     *
26
+     * This method registers an error handler and an exception handler.
27
+     *
28
+     * @param int  $errorReportingLevel The level of error reporting you want
29
+     * @param bool $displayErrors       Whether to display errors (for development) or just log them (for production)
30
+     */
31
+    public static function enable($errorReportingLevel = E_ALL, $displayErrors = true)
32
+    {
33
+        if (static::$enabled) {
34
+            return;
35
+        }
36
+
37
+        static::$enabled = true;
38
+
39
+        if (null !== $errorReportingLevel) {
40
+            error_reporting($errorReportingLevel);
41
+        } else {
42
+            error_reporting(E_ALL);
43
+        }
44
+
45
+        if (!\in_array(\PHP_SAPI, ['cli', 'phpdbg'], true)) {
46
+            ini_set('display_errors', 0);
47
+            ExceptionHandler::register();
48
+        } elseif ($displayErrors && (!filter_var(ini_get('log_errors'), FILTER_VALIDATE_BOOLEAN) || ini_get('error_log'))) {
49
+            // CLI - display errors only if they're not already logged to STDERR
50
+            ini_set('display_errors', 1);
51
+        }
52
+        if ($displayErrors) {
53
+            ErrorHandler::register(new ErrorHandler(new BufferingLogger()));
54
+        } else {
55
+            ErrorHandler::register()->throwAt(0, true);
56
+        }
57
+
58
+        DebugClassLoader::enable();
59
+    }
60
+}