You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When an ini setting is quoted, for example xdebug.file_link_format = "phpstorm://open?file=%f&line=%l", ini_get will return a simple string without the protection quotes and Runtime::getCurrentSettings will return an invalid unqoted stringxdebug.file_link_format=phpstorm://open?file=%f&line=%l" which will break any test.
PHPUnit\Framework\Exception: PHP: syntax error, unexpected '=' in Unknown on line 20
We could ensure string settings are wrapped in quotes.
The text was updated successfully, but these errors were encountered:
When an ini setting is quoted, for example
xdebug.file_link_format = "phpstorm://open?file=%f&line=%l"
,ini_get
will return a simple string without the protection quotes andRuntime::getCurrentSettings
will return an invalid unqoted stringxdebug.file_link_format=phpstorm://open?file=%f&line=%l"
which will break any test.We could ensure string settings are wrapped in quotes.
The text was updated successfully, but these errors were encountered: