This repository was archived by the owner on Oct 2, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed
library/Zend/Test/PHPUnit/Constraint Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 21
21
*/
22
22
23
23
if (version_compare (PHPUnit_Runner_Version::id (), '4.1 ' , '>= ' )) {
24
+ include (dirname (__FILE__ ) . DIRECTORY_SEPARATOR . 'DomQuery41.php ' );
24
25
$ alias = 'Zend_Test_PHPUnit_Constraint_DomQuery41 ' ;
25
26
} elseif (version_compare (PHPUnit_Runner_Version::id (), '3.5 ' , '>= ' )) {
27
+ include (dirname (__FILE__ ) . DIRECTORY_SEPARATOR . 'DomQuery37.php ' );
26
28
$ alias = 'Zend_Test_PHPUnit_Constraint_DomQuery37 ' ;
27
29
} else {
30
+ include (dirname (__FILE__ ) . DIRECTORY_SEPARATOR . 'DomQuery34.php ' );
28
31
$ alias = 'Zend_Test_PHPUnit_Constraint_DomQuery34 ' ;
29
32
}
30
33
Original file line number Diff line number Diff line change 21
21
*/
22
22
23
23
if (version_compare (PHPUnit_Runner_Version::id (), '4.1 ' , '>= ' )) {
24
+ include (dirname (__FILE__ ) . DIRECTORY_SEPARATOR . 'Redirect41.php ' );
24
25
$ alias = 'Zend_Test_PHPUnit_Constraint_Redirect41 ' ;
25
26
} elseif (version_compare (PHPUnit_Runner_Version::id (), '3.5 ' , '>= ' )) {
27
+ include (dirname (__FILE__ ) . DIRECTORY_SEPARATOR . 'Redirect37.php ' );
26
28
$ alias = 'Zend_Test_PHPUnit_Constraint_Redirect37 ' ;
27
29
} else {
30
+ include (dirname (__FILE__ ) . DIRECTORY_SEPARATOR . 'Redirect34.php ' );
28
31
$ alias = 'Zend_Test_PHPUnit_Constraint_Redirect34 ' ;
29
32
}
30
33
Original file line number Diff line number Diff line change 21
21
*/
22
22
23
23
if (version_compare (PHPUnit_Runner_Version::id (), '4.1 ' , '>= ' )) {
24
+ include (dirname (__FILE__ ) . DIRECTORY_SEPARATOR . 'ResponseHeader41.php ' );
24
25
$ alias = 'Zend_Test_PHPUnit_Constraint_ResponseHeader41 ' ;
25
26
} elseif (version_compare (PHPUnit_Runner_Version::id (), '3.5 ' , '>= ' )) {
27
+ include (dirname (__FILE__ ) . DIRECTORY_SEPARATOR . 'ResponseHeader37.php ' );
26
28
$ alias = 'Zend_Test_PHPUnit_Constraint_ResponseHeader37 ' ;
27
29
} else {
30
+ include (dirname (__FILE__ ) . DIRECTORY_SEPARATOR . 'ResponseHeader34.php ' );
28
31
$ alias = 'Zend_Test_PHPUnit_Constraint_ResponseHeader34 ' ;
29
32
}
30
33
You can’t perform that action at this time.
0 commit comments