File tree Expand file tree Collapse file tree 2 files changed +49
-1
lines changed Expand file tree Collapse file tree 2 files changed +49
-1
lines changed Original file line number Diff line number Diff line change 16
16
"autoload" : {
17
17
"psr-4" : {
18
18
"SandFox\\ PhpStorm\\ Metadata\\ " : " src"
19
- }
19
+ },
20
+ "classmap" : [
21
+ " legacy.php"
22
+ ]
20
23
},
21
24
"require" : {
22
25
"php" : " >= 7.0"
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace SandFoxMe \PhpStorm \Metadata
4
+ {
5
+ /**
6
+ * @deprecated use \SandFox\PhpStorm\Metadata\Generator
7
+ */
8
+ final class Generator
9
+ {
10
+ // cannot extend Generator because it is final, use proxy method
11
+ public static function __callStatic ($ name , $ arguments )
12
+ {
13
+ return call_user_func_array ([\SandFox \PhpStorm \Metadata \Generator::class, $ name ], $ arguments );
14
+ }
15
+ }
16
+
17
+ /**
18
+ * @deprecated use \SandFox\PhpStorm\Metadata\StaticMap
19
+ */
20
+ class StaticMap extends \SandFox \PhpStorm \Metadata \StaticMap {}
21
+ }
22
+
23
+ namespace SandFoxMe \PhpStorm \Metadata \Integration \Psr15
24
+ {
25
+ /**
26
+ * @deprecated use \SandFox\PhpStorm\Metadata\Integration\Psr15\ContainerExportMiddleware
27
+ */
28
+ class ContainerExportMiddleware extends \SandFox \PhpStorm \Metadata \Integration \Psr15 \ContainerExportMiddleware {}
29
+ }
30
+
31
+ namespace SandFoxMe \PhpStorm \Metadata \Integration \Silex
32
+ {
33
+ /**
34
+ * @deprecated use \SandFox\PhpStorm\Metadata\Integration\Silex\ContainerExportProvider
35
+ */
36
+ class ContainerExportProvider extends \SandFox \PhpStorm \Metadata \Integration \Silex \ContainerExportProvider {}
37
+ }
38
+
39
+ namespace SandFoxMe \PhpStorm \Metadata \Integration \Slim
40
+ {
41
+ /**
42
+ * @deprecated use \SandFox\PhpStorm\Metadata\Integration\Slim\ContainerExportMiddleware
43
+ */
44
+ class ContainerExportMiddleware extends \SandFox \PhpStorm \Metadata \Integration \Slim \ContainerExportMiddleware {}
45
+ }
You can’t perform that action at this time.
0 commit comments