View Issue Details

IDProjectCategoryView StatusLast Update
0001270XdebugUncategorizedpublic2016-02-27 17:15
Reporterrobob4him Assigned To 
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionfixed 
PlatformWindowsOSWindowsOS Version7
Product Version2.4.0rc4 
Fixed in Version2.4.0 
Summary0001270: String parsing marked not covered
Description

http://php.net/manual/en/language.types.string.php#language.types.string.parsing

Variables interpolated inside strings are not considered covered

Steps To Reproduce

throw new \Exception(
"The specified platform for '{$clazz}'" .
" must be a fetchable service or fully qualified class"
);

Additional Information

The snippet above is marked as covered when changed to:

throw new \Exception(
'The specified platform for \'' . $clazz .
'\' must be a fetchable service or fully qualified class'
);

TagsNo tags attached.
Operating SystemWindows 7
PHP Version7.0.0-7.0.4

Activities

derick

2016-02-27 17:15

administrator   ~0003533

Fixed for 2.4.0 - thanks for the report!