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,34 +0,0 @@
1
-<?php
2
-
3
-namespace Symfony\Component\Debug\Tests\Fixtures;
4
-
5
-/**
6
- * @method string interfaceMethod()
7
- * @method        sameLineInterfaceMethod($arg)
8
- * @method sameLineInterfaceMethodNoBraces
9
- *
10
- * Ignored
11
- * @method
12
- * @method
13
- *
14
- * Not ignored
15
- * @method newLineInterfaceMethod() Some description!
16
- * @method \stdClass newLineInterfaceMethodNoBraces Description
17
- *
18
- * Invalid
19
- * @method unknownType invalidInterfaceMethod()
20
- * @method unknownType|string invalidInterfaceMethodNoBraces
21
- *
22
- * Complex
23
- * @method              complexInterfaceMethod($arg, ...$args)
24
- * @method string[]|int complexInterfaceMethodTyped($arg, int ...$args) Description ...
25
- *
26
- * Static
27
- * @method static Foo&Bar staticMethod()
28
- * @method static staticMethodNoBraces
29
- * @method static \stdClass staticMethodTyped(int $arg) Description
30
- * @method static \stdClass[] staticMethodTypedNoBraces
31
- */
32
-interface VirtualInterface
33
-{
34
-}
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,34 @@
1
+<?php
2
+
3
+namespace Symfony\Component\Debug\Tests\Fixtures;
4
+
5
+/**
6
+ * @method string interfaceMethod()
7
+ * @method        sameLineInterfaceMethod($arg)
8
+ * @method sameLineInterfaceMethodNoBraces
9
+ *
10
+ * Ignored
11
+ * @method
12
+ * @method
13
+ *
14
+ * Not ignored
15
+ * @method newLineInterfaceMethod() Some description!
16
+ * @method \stdClass newLineInterfaceMethodNoBraces Description
17
+ *
18
+ * Invalid
19
+ * @method unknownType invalidInterfaceMethod()
20
+ * @method unknownType|string invalidInterfaceMethodNoBraces
21
+ *
22
+ * Complex
23
+ * @method              complexInterfaceMethod($arg, ...$args)
24
+ * @method string[]|int complexInterfaceMethodTyped($arg, int ...$args) Description ...
25
+ *
26
+ * Static
27
+ * @method static Foo&Bar staticMethod()
28
+ * @method static staticMethodNoBraces
29
+ * @method static \stdClass staticMethodTyped(int $arg) Description
30
+ * @method static \stdClass[] staticMethodTypedNoBraces
31
+ */
32
+interface VirtualInterface
33
+{
34
+}