@@ -8,6 +8,8 @@ $global_vars = array();
8
8
$ cr_okay = FALSE ;
9
9
10
10
$ source = file_get_contents ("CallbackTransformIterator.php " );
11
+ $ lines = preg_split ('/( \\x0a| \\x0d)+/ ' , $ source , 0 , PREG_SPLIT_NO_EMPTY );
12
+
11
13
if (preg_match ('/\?>\s*$/ ' , $ source ))
12
14
echo "CallbackTransformIterator has closing PHP tag at end \n" ;
13
15
else
51
53
print "CallbackTransformIterator added these variables to global space: " .
52
54
implode (", " , array_diff (array_keys ($ GLOBALS ), $ global_vars )).
53
55
"\n" ;
56
+
57
+ $ class_defs = array ();
58
+ foreach ($ lines as $ line ) {
59
+ if (preg_match ('/^\s*((abstract)\s+)?(class|interface|trait)\s+([a-z0-9_]+)/i ' , $ line , $ matches )) {
60
+ $ new_def = "$ matches [3 ] $ matches [4 ]" ;
61
+ if ($ matches [3 ] == 'class '
62
+ && preg_match ('/Exception$/ ' , $ matches [4 ])) {
63
+ foreach ($ class_defs as $ class_def ) {
64
+ if (preg_match ("/^ " .preg_replace ("/^(trait|interface)/ " , "class " , $ class_def )."/ " , $ new_def ))
65
+ continue 2 ;
66
+ }
67
+ }
68
+ $ class_defs [] = $ new_def ;
69
+ }
70
+ }
71
+ if (count ($ class_defs ) <= 1 ) {
72
+ print "CallbackTransformIterator contains at most one class, interface, or trait (except for Exception classes) \n" ;
73
+ } else {
74
+ print "CallbackTransformIterator contains multiple classes/interfaces/traits: \n" ;
75
+ print " " .implode ("\n " , $ class_defs )."\n" ;
76
+ }
54
77
?>
55
78
--EXPECT--
56
79
CallbackTransformIterator has closing PHP tag at end
57
80
CallbackTransformIterator does not contain CR characters (or is consistent and in a folder marked with DOS_LINE_ENDINGS)
58
81
Parsing of CallbackTransformIterator was silent
59
82
CallbackTransformIterator did not pollute global variable space
83
+ CallbackTransformIterator contains at most one class, interface, or trait (except for Exception classes)
0 commit comments