1
0
Fork 0

does not apply for hhvm

pull/5708/head
Rob Bast 2016-09-23 13:27:15 +02:00
parent 181b172e77
commit 4213fbc8c6
No known key found for this signature in database
GPG Key ID: 73076E35E6165F39
1 changed files with 2 additions and 2 deletions

View File

@ -64,9 +64,9 @@ class ClassMapGeneratorTest extends TestCase
/**
* @wontfix If short_open_tag is not enabled, we end up parsing the docblock because
* php_strip_whitespace won't recognize the file. Funky edge-case.
* php_strip_whitespace won't recognize the file. Funky edge-case (does not apply to HHVM).
*/
if (!ini_get('short_open_tag')) {
if (!defined('HHVM_VERSION') && !ini_get('short_open_tag')) {
$classmap['description'] = realpath(__DIR__) . '/Fixtures/classmap/ShortOpenTagDocblock.php';
}