Skip to content

Commit 502ea32

Browse files
committed
Refactoring
1 parent 01e5313 commit 502ea32

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/Web/File.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,10 @@ public function getExtension(): string
8888
*/
8989
public function isEqualTo(self $file): bool
9090
{
91-
return $this->getPath() === $file->getPath() && $this->getName() === $file->getName() && $this->getSize(
92-
) === $file->getSize();
91+
return
92+
$this->getPath() === $file->getPath() &&
93+
$this->getName() === $file->getName() &&
94+
$this->getSize() === $file->getSize();
9395
}
9496

9597
/**

0 commit comments

Comments
 (0)