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,85 +0,0 @@
1
-<?php
2
-
3
-namespace Symfony\Component\Debug\Tests\Fixtures;
4
-
5
-/**
6
- * @final since version 3.3.
7
- */
8
-class FinalClass1
9
-{
10
-    // simple comment
11
-}
12
-
13
-/**
14
- * @final
15
- */
16
-class FinalClass2
17
-{
18
-    // no comment
19
-}
20
-
21
-/**
22
- * @final comment with @@@ and ***
23
- *
24
- * @author John Doe
25
- */
26
-class FinalClass3
27
-{
28
-    // with comment and a tag after
29
-}
30
-
31
-/**
32
- * @final
33
- *
34
- * @author John Doe
35
- */
36
-class FinalClass4
37
-{
38
-    // without comment and a tag after
39
-}
40
-
41
-/**
42
- * @author John Doe
43
- *
44
- *
45
- * @final multiline
46
- * comment
47
- */
48
-class FinalClass5
49
-{
50
-    // with comment and a tag before
51
-}
52
-
53
-/**
54
- * @author John Doe
55
- *
56
- * @final
57
- */
58
-class FinalClass6
59
-{
60
-    // without comment and a tag before
61
-}
62
-
63
-/**
64
- * @author John Doe
65
- *
66
- * @final another
67
- *        multiline comment...
68
- *
69
- * @return string
70
- */
71
-class FinalClass7
72
-{
73
-    // with comment and a tag before and after
74
-}
75
-
76
-/**
77
- * @author John Doe
78
- * @final
79
- *
80
- * @return string
81
- */
82
-class FinalClass8
83
-{
84
-    // without comment and a tag before and after
85
-}
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,85 @@
1
+<?php
2
+
3
+namespace Symfony\Component\Debug\Tests\Fixtures;
4
+
5
+/**
6
+ * @final since version 3.3.
7
+ */
8
+class FinalClass1
9
+{
10
+    // simple comment
11
+}
12
+
13
+/**
14
+ * @final
15
+ */
16
+class FinalClass2
17
+{
18
+    // no comment
19
+}
20
+
21
+/**
22
+ * @final comment with @@@ and ***
23
+ *
24
+ * @author John Doe
25
+ */
26
+class FinalClass3
27
+{
28
+    // with comment and a tag after
29
+}
30
+
31
+/**
32
+ * @final
33
+ *
34
+ * @author John Doe
35
+ */
36
+class FinalClass4
37
+{
38
+    // without comment and a tag after
39
+}
40
+
41
+/**
42
+ * @author John Doe
43
+ *
44
+ *
45
+ * @final multiline
46
+ * comment
47
+ */
48
+class FinalClass5
49
+{
50
+    // with comment and a tag before
51
+}
52
+
53
+/**
54
+ * @author John Doe
55
+ *
56
+ * @final
57
+ */
58
+class FinalClass6
59
+{
60
+    // without comment and a tag before
61
+}
62
+
63
+/**
64
+ * @author John Doe
65
+ *
66
+ * @final another
67
+ *        multiline comment...
68
+ *
69
+ * @return string
70
+ */
71
+class FinalClass7
72
+{
73
+    // with comment and a tag before and after
74
+}
75
+
76
+/**
77
+ * @author John Doe
78
+ * @final
79
+ *
80
+ * @return string
81
+ */
82
+class FinalClass8
83
+{
84
+    // without comment and a tag before and after
85
+}