Skip to content

Commit 9213a82

Browse files
committed
minor symfony#10447 [Config][Loader] Code style fix (kdauzickas)
This PR was submitted for the 2.3-dev branch but it was merged into the 2.3 branch instead (closes symfony#10447). Discussion ---------- [Config][Loader] Code style fix | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - Commits ------- 6d84c04 Minor style fix
2 parents 172bbb1 + a8fcc41 commit 9213a82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Config/Loader/DelegatingLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@ public function load($resource, $type = null)
5757
*/
5858
public function supports($resource, $type = null)
5959
{
60-
return false === $this->resolver->resolve($resource, $type) ? false : true;
60+
return false !== $this->resolver->resolve($resource, $type);
6161
}
6262
}

0 commit comments

Comments
 (0)