@@ -42,39 +42,39 @@ public static function load()
42
42
$ container ['zip.inflator ' ] = null ;
43
43
$ container ['zip.deflator ' ] = null ;
44
44
45
- $ container ['resource-manager ' ] = function ($ container ) {
45
+ $ container ['resource-manager ' ] = function ($ container ) {
46
46
return new ResourceManager (
47
47
$ container ['request-mapper ' ],
48
48
$ container ['resource-teleporter ' ],
49
49
$ container ['filesystem ' ]
50
50
);
51
51
};
52
52
53
- $ container ['executable-finder ' ] = function ($ container ) {
53
+ $ container ['executable-finder ' ] = function ($ container ) {
54
54
return new ExecutableFinder ();
55
55
};
56
56
57
- $ container ['request-mapper ' ] = function ($ container ) {
57
+ $ container ['request-mapper ' ] = function ($ container ) {
58
58
return new RequestMapper ($ container ['target-locator ' ]);
59
59
};
60
60
61
- $ container ['target-locator ' ] = function () {
61
+ $ container ['target-locator ' ] = function () {
62
62
return new TargetLocator ();
63
63
};
64
64
65
- $ container ['teleporter-container ' ] = function ($ container ) {
65
+ $ container ['teleporter-container ' ] = function ($ container ) {
66
66
return TeleporterContainer::load ();
67
67
};
68
68
69
- $ container ['resource-teleporter ' ] = function ($ container ) {
69
+ $ container ['resource-teleporter ' ] = function ($ container ) {
70
70
return new ResourceTeleporter ($ container ['teleporter-container ' ]);
71
71
};
72
72
73
- $ container ['filesystem ' ] = function () {
73
+ $ container ['filesystem ' ] = function () {
74
74
return new Filesystem ();
75
75
};
76
76
77
- $ container ['Alchemy \\Zippy \\Adapter \\ZipAdapter ' ] = function ($ container ) {
77
+ $ container ['Alchemy \\Zippy \\Adapter \\ZipAdapter ' ] = function ($ container ) {
78
78
return ZipAdapter::newInstance (
79
79
$ container ['executable-finder ' ],
80
80
$ container ['resource-manager ' ],
@@ -86,7 +86,7 @@ public static function load()
86
86
$ container ['gnu-tar.inflator ' ] = null ;
87
87
$ container ['gnu-tar.deflator ' ] = null ;
88
88
89
- $ container ['Alchemy \\Zippy \\Adapter \\GNUTar \\TarGNUTarAdapter ' ] = function ($ container ) {
89
+ $ container ['Alchemy \\Zippy \\Adapter \\GNUTar \\TarGNUTarAdapter ' ] = function ($ container ) {
90
90
return TarGNUTarAdapter::newInstance (
91
91
$ container ['executable-finder ' ],
92
92
$ container ['resource-manager ' ],
@@ -95,7 +95,7 @@ public static function load()
95
95
);
96
96
};
97
97
98
- $ container ['Alchemy \\Zippy \\Adapter \\GNUTar \\TarGzGNUTarAdapter ' ] = function ($ container ) {
98
+ $ container ['Alchemy \\Zippy \\Adapter \\GNUTar \\TarGzGNUTarAdapter ' ] = function ($ container ) {
99
99
return TarGzGNUTarAdapter::newInstance (
100
100
$ container ['executable-finder ' ],
101
101
$ container ['resource-manager ' ],
@@ -104,7 +104,7 @@ public static function load()
104
104
);
105
105
};
106
106
107
- $ container ['Alchemy \\Zippy \\Adapter \\GNUTar \\TarBz2GNUTarAdapter ' ] = function ($ container ) {
107
+ $ container ['Alchemy \\Zippy \\Adapter \\GNUTar \\TarBz2GNUTarAdapter ' ] = function ($ container ) {
108
108
return TarBz2GNUTarAdapter::newInstance (
109
109
$ container ['executable-finder ' ],
110
110
$ container ['resource-manager ' ],
@@ -116,7 +116,7 @@ public static function load()
116
116
$ container ['bsd-tar.inflator ' ] = null ;
117
117
$ container ['bsd-tar.deflator ' ] = null ;
118
118
119
- $ container ['Alchemy \\Zippy \\Adapter \\BSDTar \\TarBSDTarAdapter ' ] = function ($ container ) {
119
+ $ container ['Alchemy \\Zippy \\Adapter \\BSDTar \\TarBSDTarAdapter ' ] = function ($ container ) {
120
120
return TarBSDTarAdapter::newInstance (
121
121
$ container ['executable-finder ' ],
122
122
$ container ['resource-manager ' ],
@@ -125,7 +125,7 @@ public static function load()
125
125
);
126
126
};
127
127
128
- $ container ['Alchemy \\Zippy \\Adapter \\BSDTar \\TarGzBSDTarAdapter ' ] = function ($ container ) {
128
+ $ container ['Alchemy \\Zippy \\Adapter \\BSDTar \\TarGzBSDTarAdapter ' ] = function ($ container ) {
129
129
return TarGzBSDTarAdapter::newInstance (
130
130
$ container ['executable-finder ' ],
131
131
$ container ['resource-manager ' ],
@@ -134,15 +134,15 @@ public static function load()
134
134
);
135
135
};
136
136
137
- $ container ['Alchemy \\Zippy \\Adapter \\BSDTar \\TarBz2BSDTarAdapter ' ] = function ($ container ) {
137
+ $ container ['Alchemy \\Zippy \\Adapter \\BSDTar \\TarBz2BSDTarAdapter ' ] = function ($ container ) {
138
138
return TarBz2BSDTarAdapter::newInstance (
139
139
$ container ['executable-finder ' ],
140
140
$ container ['resource-manager ' ],
141
141
$ container ['bsd-tar.inflator ' ],
142
142
$ container ['bsd-tar.deflator ' ]);
143
143
};
144
144
145
- $ container ['Alchemy \\Zippy \\Adapter \\ZipExtensionAdapter ' ] = function () {
145
+ $ container ['Alchemy \\Zippy \\Adapter \\ZipExtensionAdapter ' ] = function () {
146
146
return ZipExtensionAdapter::newInstance ();
147
147
};
148
148
0 commit comments