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,31 +0,0 @@
1
-<?php declare(strict_types=1);
2
-/**
3
- * Part of Windwalker project.
4
- *
5
- * @copyright  Copyright (C) 2019 LYRASOFT.
6
- * @license    GNU General Public License version 2 or later;
7
- */
8
-
9
-namespace Windwalker\Structure;
10
-
11
-/**
12
- * The Format class.
13
- *
14
- * @since  2.1
15
- */
16
-class Format
17
-{
18
-    public const JSON = 'json';
19
-
20
-    public const INI = 'ini';
21
-
22
-    public const YAML = 'yaml';
23
-
24
-    public const XML = 'xml';
25
-
26
-    public const PHP = 'php';
27
-
28
-    public const HJSON = 'hjson';
29
-
30
-    public const TOML = 'toml';
31
-}
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,31 @@
1
+<?php declare(strict_types=1);
2
+/**
3
+ * Part of Windwalker project.
4
+ *
5
+ * @copyright  Copyright (C) 2019 LYRASOFT.
6
+ * @license    GNU General Public License version 2 or later;
7
+ */
8
+
9
+namespace Windwalker\Structure;
10
+
11
+/**
12
+ * The Format class.
13
+ *
14
+ * @since  2.1
15
+ */
16
+class Format
17
+{
18
+    public const JSON = 'json';
19
+
20
+    public const INI = 'ini';
21
+
22
+    public const YAML = 'yaml';
23
+
24
+    public const XML = 'xml';
25
+
26
+    public const PHP = 'php';
27
+
28
+    public const HJSON = 'hjson';
29
+
30
+    public const TOML = 'toml';
31
+}