We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01e5313 commit 502ea32Copy full SHA for 502ea32
src/Web/File.php
@@ -88,8 +88,10 @@ public function getExtension(): string
88
*/
89
public function isEqualTo(self $file): bool
90
{
91
- return $this->getPath() === $file->getPath() && $this->getName() === $file->getName() && $this->getSize(
92
- ) === $file->getSize();
+ return
+ $this->getPath() === $file->getPath() &&
93
+ $this->getName() === $file->getName() &&
94
+ $this->getSize() === $file->getSize();
95
}
96
97
/**
0 commit comments