@@ -48,7 +48,7 @@ public static function asBinding($t, $impl) {
48
48
} else if (is_array ($ impl )) {
49
49
return new ArrayBinding ($ impl , $ t );
50
50
} else {
51
- return new ClassBinding (XPClass:: forName ((string )$ impl ), $ t );
51
+ return new ClassBinding (Reflection:: type ((string )$ impl ), $ t );
52
52
}
53
53
}
54
54
@@ -147,19 +147,18 @@ private function argumentsOf($routine, $named= []) {
147
147
/**
148
148
* Implicitely creates an instance binding for a given class.
149
149
*
150
- * @param lang.XPClass $class
150
+ * @param lang.reflection.Type $type
151
151
* @param [:var] $named
152
152
* @return inject.Binding
153
153
* @throws inject.ProvisionException
154
154
*/
155
- private function instanceOf ($ class , $ named = []) {
156
- $ t = Reflection::type ($ class );
157
- if (!$ t ->instantiable (true )) {
158
- throw new ProvisionException ('Cannot instantiate ' .$ class ->getName ().' with non-public constructor ' );
155
+ private function instanceOf ($ type , $ named = []) {
156
+ if (!$ type ->instantiable (true )) {
157
+ throw new ProvisionException ('Cannot instantiate ' .$ type ->name ().' with non-public constructor ' );
159
158
}
160
159
161
- $ constructor = $ t ->constructor ();
162
- if (null === $ constructor ) return new InstanceBinding ($ class ->newInstance ());
160
+ $ constructor = $ type ->constructor ();
161
+ if (null === $ constructor ) return new InstanceBinding ($ type ->newInstance ());
163
162
164
163
$ arguments = $ this ->argumentsOf ($ constructor , $ named );
165
164
if (!$ this ->provided ($ arguments )) return $ arguments ;
@@ -169,7 +168,7 @@ private function instanceOf($class, $named= []) {
169
168
try {
170
169
return new InstanceBinding ($ constructor ->newInstance ($ arguments ->resolve ($ this )));
171
170
} catch (Throwable $ e ) {
172
- throw new ProvisionException ('Error creating an instance of ' .$ class -> getName (), $ e );
171
+ throw new ProvisionException ('Error creating an instance of ' .$ type -> name (), $ e );
173
172
}
174
173
}
175
174
@@ -204,8 +203,9 @@ public function binding($type, $name= null) {
204
203
$ literal = $ t ->literal ();
205
204
if ($ binding = $ this ->bindings [$ literal ][$ name ] ?? null ) {
206
205
return $ binding ;
207
- } else if (null === $ name && $ t instanceof XPClass && !($ t ->isInterface () || $ t ->getModifiers () & MODIFIER_ABSTRACT )) {
208
- return $ this ->instanceOf ($ t );
206
+ } else if (null === $ name && $ t instanceof XPClass) {
207
+ $ type = Reflection::type ($ t );
208
+ if ($ type ->instantiable ()) return $ this ->instanceOf ($ type );
209
209
}
210
210
}
211
211
@@ -244,12 +244,13 @@ public function args($routine, $named= []) {
244
244
* injection, the arguments are compiled from the relevant annotations.
245
245
* Otherwise, optional constructor arguments may be passed.
246
246
*
247
- * @param lang.XPClass $class
247
+ * @param lang.XPClass|lang.reflection.Type $class
248
248
* @param [:var] $named Named arguments
249
249
* @return object
250
250
* @throws inject.ProvisionException
251
251
*/
252
- public function newInstance (XPClass $ class , $ named = []) {
253
- return $ this ->instanceOf ($ class , $ named )->resolve ($ this );
252
+ public function newInstance ($ class , $ named = []) {
253
+ $ type = $ class instanceof XPClass ? Reflection::type ($ class ) : $ class ;
254
+ return $ this ->instanceOf ($ type , $ named )->resolve ($ this );
254
255
}
255
256
}
0 commit comments