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,27 +0,0 @@
1
-<?php
2
-
3
-namespace Symfony\Component\Debug\Tests\Fixtures;
4
-
5
-/**
6
- * Ensures a deprecation is triggered when a new parameter is not declared in child classes.
7
- */
8
-interface InterfaceWithAnnotatedParameters
9
-{
10
-    /**
11
-     * @param bool $matrix
12
-     */
13
-    public function whereAmI();
14
-
15
-    /**
16
-     * @param       $noType
17
-     * @param callable(\Throwable|null $reason, mixed $value) $callback and a comment
18
-     * about this great param
19
-     * @param string                                          $param (comment with $dollar)
20
-     * @param $defined
21
-     * @param  callable  ($a,  $b)  $anotherOne
22
-     * @param callable (mixed $a, $b) $definedCallable
23
-     * @param Type$WithDollarIsStillAType $ccc
24
-     * @param \JustAType
25
-     */
26
-    public function iAmHere();
27
-}
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,27 @@
1
+<?php
2
+
3
+namespace Symfony\Component\Debug\Tests\Fixtures;
4
+
5
+/**
6
+ * Ensures a deprecation is triggered when a new parameter is not declared in child classes.
7
+ */
8
+interface InterfaceWithAnnotatedParameters
9
+{
10
+    /**
11
+     * @param bool $matrix
12
+     */
13
+    public function whereAmI();
14
+
15
+    /**
16
+     * @param       $noType
17
+     * @param callable(\Throwable|null $reason, mixed $value) $callback and a comment
18
+     * about this great param
19
+     * @param string                                          $param (comment with $dollar)
20
+     * @param $defined
21
+     * @param  callable  ($a,  $b)  $anotherOne
22
+     * @param callable (mixed $a, $b) $definedCallable
23
+     * @param Type$WithDollarIsStillAType $ccc
24
+     * @param \JustAType
25
+     */
26
+    public function iAmHere();
27
+}