Performed using
find . -name \*.php -exec sed -i -e :a -e '/./,$!d;/^\n*$/{$d;N;};/\n$/ba' {} \;
Change-Id: I5d0627f94c73690cf3a8a453539c22c760c2aa60
9 lines
191 B
PHP
9 lines
191 B
PHP
<?php
|
|
|
|
class CoreParserTestSuite extends PHPUnit_Framework_TestSuite {
|
|
|
|
public static function suite() {
|
|
return ParserTestTopLevelSuite::suite( ParserTestTopLevelSuite::CORE_ONLY );
|
|
}
|
|
|
|
}
|