8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d521215 + a834c2f commit eed1db0Copy full SHA for eed1db0
src/Symfony/Component/BrowserKit/Cookie.php
@@ -127,7 +127,7 @@ public static function fromString($cookie, $url = null)
127
$parts = explode(';', $cookie);
128
129
if (false === strpos($parts[0], '=')) {
130
- throw new \InvalidArgumentException('The cookie string "%s" is not valid.');
+ throw new \InvalidArgumentException(sprintf('The cookie string "%s" is not valid.', $parts[0]));
131
}
132
133
list($name, $value) = explode('=', array_shift($parts), 2);
0 commit comments