Skip to content

Commit eacbb4c

Browse files
committed
Coding standards
1 parent d4b0f97 commit eacbb4c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/Symfony/Component/Finder/Finder.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -435,11 +435,10 @@ public function sort(\Closure $closure): static
435435
*/
436436
public function sortByName(bool $useNaturalSort = false, bool $useCaseInsensitive = false): static
437437
{
438-
if($useCaseInsensitive) {
438+
if ($useCaseInsensitive) {
439439
$this->sort = $useNaturalSort ? Iterator\SortableIterator::SORT_BY_NAME_NATURAL_CASE_INSENSITIVE :
440440
Iterator\SortableIterator::SORT_BY_NAME_CASE_INSENSITIVE;
441-
}
442-
else {
441+
} else {
443442
$this->sort = $useNaturalSort ? Iterator\SortableIterator::SORT_BY_NAME_NATURAL : Iterator\SortableIterator::SORT_BY_NAME;
444443
}
445444

0 commit comments

Comments
 (0)