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.
1 parent fcf29a0 commit e107c02Copy full SHA for e107c02
src/AssetManager/Service/AssetManager.php
@@ -155,10 +155,10 @@ public function setAssetOnResponse(ResponseInterface $response)
155
}
156
// @codeCoverageIgnoreEnd
157
158
- if(!empty($this->config['clear_output_buffer']) && $this->config['clear_output_buffer']){
+ if (!empty($this->config['clear_output_buffer']) && $this->config['clear_output_buffer']) {
159
// Only clean the output buffer if it's turned on and something
160
// has been buffered.
161
- if(ob_get_length() > 0) {
+ if (ob_get_length() > 0) {
162
ob_clean();
163
164
0 commit comments