File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -228,6 +228,10 @@ public function testNestedDependencyResolution()
228228
229229 public function testLazyObjects ()
230230 {
231+ if (version_compare (phpversion (), '8.4.0 ' , '< ' )) {
232+ $ this ->markTestSkipped ();
233+ }
234+
231235 $ container = new Container ;
232236 $ container ->bind (IContainerContractStub::class, ContainerImplementationStub::class);
233237 $ class = $ container ->make (ProxyDependenciesClass::class);
@@ -238,6 +242,10 @@ public function testLazyObjects()
238242
239243 public function testObjectWithLazyDependencies ()
240244 {
245+ if (version_compare (phpversion (), '8.4.0 ' , '< ' )) {
246+ $ this ->markTestSkipped ();
247+ }
248+
241249 $ container = new Container ;
242250 $ container ->bind (IContainerContractStub::class, ContainerImplementationStub::class);
243251 $ class = $ container ->make (ClassWithLazyDependencies::class);
You can’t perform that action at this time.
0 commit comments