View Issue Details

IDProjectCategoryView StatusLast Update
0001270XdebugUncategorizedpublic2016-02-27 17:15
Reporterrobob4him Assigned Toderick  
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!

Issue History

Date Modified Username Field Change
2016-02-15 22:50 robob4him New Issue
2016-02-27 17:15 derick Note Added: 0003533
2016-02-27 17:15 derick Status new => closed
2016-02-27 17:15 derick Assigned To => derick
2016-02-27 17:15 derick Resolution open => fixed
2016-02-27 17:15 derick Fixed in Version => 2.4.0
2016-07-31 12:36 derick Category Usage problems => Usage problems (Crashes)
2016-07-31 12:38 derick Category Usage problems (Crashes) => Usage problems (Wrong Results)
2020-03-12 16:35 derick Category Usage problems (Wrong Results) => Variable Display
2020-03-12 16:38 derick Category Variable Display => Uncategorized