Skip to content

Commit e107c02

Browse files
committed
Fixed conditional standards.
1 parent fcf29a0 commit e107c02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/AssetManager/Service/AssetManager.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,10 +155,10 @@ public function setAssetOnResponse(ResponseInterface $response)
155155
}
156156
// @codeCoverageIgnoreEnd
157157

158-
if(!empty($this->config['clear_output_buffer']) && $this->config['clear_output_buffer']){
158+
if (!empty($this->config['clear_output_buffer']) && $this->config['clear_output_buffer']) {
159159
// Only clean the output buffer if it's turned on and something
160160
// has been buffered.
161-
if(ob_get_length() > 0) {
161+
if (ob_get_length() > 0) {
162162
ob_clean();
163163
}
164164
}

0 commit comments

Comments
 (0)