Skip to content
This repository was archived by the owner on Jan 21, 2020. It is now read-only.

Commit 1c8160d

Browse files
committed
CS fixes
1 parent 6466ab6 commit 1c8160d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/NamespacedPathStackResolver.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public function __construct($options = null)
4646
{
4747
$this->useViewStream = (bool) ini_get('short_open_tag');
4848
if ($this->useViewStream) {
49-
if (!in_array('zend.view', stream_get_wrappers())) {
49+
if (! in_array('zend.view', stream_get_wrappers())) {
5050
stream_wrapper_register('zend.view', 'Zend\View\Stream');
5151
}
5252
}
@@ -162,7 +162,7 @@ public function resolve($name, RendererInterface $renderer = null)
162162
);
163163
}
164164

165-
if (!count($this->paths)) {
165+
if (! count($this->paths)) {
166166
$this->lastLookupFailure = static::FAILURE_NO_PATHS;
167167
return false;
168168
}

0 commit comments

Comments
 (0)