@@ -33,7 +33,7 @@ public function testCastImplementation()
3333 );
3434 }
3535
36- #[RequiresPhp('8.4 ' )]
36+ #[RequiresPhp('>= 8.4 ' )]
3737 public function testCastModernImplementation ()
3838 {
3939 $ implementation = new \Dom \Implementation ();
@@ -63,7 +63,7 @@ public function testCastNode()
6363 );
6464 }
6565
66- #[RequiresPhp('8.4 ' )]
66+ #[RequiresPhp('>= 8.4 ' )]
6767 public function testCastModernNode ()
6868 {
6969 $ doc = \Dom \XMLDocument::createFromString ('<foo><bar/></foo> ' );
@@ -97,7 +97,7 @@ public function testCastDocument()
9797 );
9898 }
9999
100- #[RequiresPhp('8.4 ' )]
100+ #[RequiresPhp('>= 8.4 ' )]
101101 public function testCastXMLDocument ()
102102 {
103103 $ doc = \Dom \XMLDocument::createFromString ('<foo><bar/></foo> ' );
@@ -116,7 +116,7 @@ public function testCastXMLDocument()
116116 );
117117 }
118118
119- #[RequiresPhp('8.4 ' )]
119+ #[RequiresPhp('>= 8.4 ' )]
120120 public function testCastHTMLDocument ()
121121 {
122122 $ doc = \Dom \HTMLDocument::createFromString ('<!DOCTYPE html><html><body><p>foo</p></body></html> ' );
@@ -143,7 +143,7 @@ public function testCastText()
143143 );
144144 }
145145
146- #[RequiresPhp('8.4 ' )]
146+ #[RequiresPhp('>= 8.4 ' )]
147147 public function testCastModernText ()
148148 {
149149 $ text = \Dom \HTMLDocument::createEmpty ()->createTextNode ('foo ' );
@@ -169,7 +169,7 @@ public function testCastAttr()
169169 );
170170 }
171171
172- #[RequiresPhp('8.4 ' )]
172+ #[RequiresPhp('>= 8.4 ' )]
173173 public function testCastModernAttr ()
174174 {
175175 $ attr = \Dom \HTMLDocument::createEmpty ()->createAttribute ('attr ' );
@@ -196,7 +196,7 @@ public function testCastElement()
196196 );
197197 }
198198
199- #[RequiresPhp('8.4 ' )]
199+ #[RequiresPhp('>= 8.4 ' )]
200200 public function testCastModernElement ()
201201 {
202202 $ attr = \Dom \HTMLDocument::createEmpty ()->createElement ('foo ' );
@@ -226,7 +226,7 @@ public function testCastDocumentType()
226226 );
227227 }
228228
229- #[RequiresPhp('8.4 ' )]
229+ #[RequiresPhp('>= 8.4 ' )]
230230 public function testCastModernDocumentType ()
231231 {
232232 $ implementation = new \Dom \Implementation ();
@@ -254,7 +254,7 @@ public function testCastProcessingInstruction()
254254 );
255255 }
256256
257- #[RequiresPhp('8.4 ' )]
257+ #[RequiresPhp('>= 8.4 ' )]
258258 public function testCastModernProcessingInstruction ()
259259 {
260260 $ entity = \Dom \HTMLDocument::createEmpty ()->createProcessingInstruction ('target ' , 'data ' );
@@ -282,7 +282,7 @@ public function testCastXPath()
282282 );
283283 }
284284
285- #[RequiresPhp('8.4 ' )]
285+ #[RequiresPhp('>= 8.4 ' )]
286286 public function testCastModernXPath ()
287287 {
288288 $ entity = new \Dom \XPath (\Dom \HTMLDocument::createEmpty ());
0 commit comments