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 new write method should have:
public function write($query, $formatted = false);
Under the hood, it should call writeRaw (v1 write function) or writeFormatted (same as v1).
public function writeRaw(QueryInterface $query, $resetPlaceholders = true); public function writeFormatted(QueryInterface $query);
An example of a function behaving like this is json_decode($value, JSON_PRETTY_PRINT);
json_decode($value, JSON_PRETTY_PRINT);
The text was updated successfully, but these errors were encountered:
nilportugues
No branches or pull requests
The new write method should have:
Under the hood, it should call writeRaw (v1 write function) or writeFormatted (same as v1).
An example of a function behaving like this is
json_decode($value, JSON_PRETTY_PRINT);
The text was updated successfully, but these errors were encountered: