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

Commit 4a3209c

Browse files
authored
Merge pull request #543 from dunglas/patch-1
Remove useless parenthesis in WebDriverSelect (minor)
2 parents 9491a71 + cb46964 commit 4a3209c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/WebDriverSelect.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function __construct(WebDriverElement $element)
3939
}
4040
$this->element = $element;
4141
$value = $element->getAttribute('multiple');
42-
$this->isMulti = ($value === 'true');
42+
$this->isMulti = $value === 'true';
4343
}
4444

4545
public function isMultiple()

0 commit comments

Comments
 (0)