We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The service description knows a static option. From the header doc:
static
static: (bool) Set to true to specify that the parameter value cannot be changed from the default.
However, in the UnitTests the static option gets a string static! assigned.
static!
Proposal: If static is boolean, we should change the test and also change the method name from getStatic() to isStatic().
getStatic()
isStatic()
The service description definition clearly defines static as type of boolean.
The text was updated successfully, but these errors were encountered:
Correct the type of var $static from string to boolean
445e071
The service description definition at http://guzzle3.readthedocs.io/_downloads/guzzle-schema-1.0.json defines the option `static` as boolean. Until now the option was handled internally as a string. This patch change the internal usage to boolean. Closes: guzzle#113
No branches or pull requests
The service description knows a
static
option. From the header doc:However, in the UnitTests the
static
option gets a stringstatic!
assigned.Proposal: If
static
is boolean, we should change the test and also change the method name fromgetStatic()
toisStatic()
.The service description definition clearly defines
static
as type of boolean.The text was updated successfully, but these errors were encountered: