Skip to content

Commit

Permalink
Merge pull request #307 from loic425/fix/boolean
Browse files Browse the repository at this point in the history
Rename boolean type in lowercase
  • Loading branch information
stof authored Mar 11, 2020
2 parents 8e81282 + f3ce227 commit cd7f67e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Selenium2Driver.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class Selenium2Driver extends CoreDriver
{
/**
* Whether the browser has been started
* @var Boolean
* @var boolean
*/
private $started = false;

Expand Down Expand Up @@ -254,7 +254,7 @@ protected static function charToOptions($char, $modifier = null)
*
* @param string $xpath the xpath to search with
* @param string $script the script to execute
* @param Boolean $sync whether to run the script synchronously (default is TRUE)
* @param boolean $sync whether to run the script synchronously (default is TRUE)
*
* @return mixed
*/
Expand All @@ -271,7 +271,7 @@ protected function executeJsOnXpath($xpath, $script, $sync = true)
*
* @param Element $element the webdriver element
* @param string $script the script to execute
* @param Boolean $sync whether to run the script synchronously (default is TRUE)
* @param boolean $sync whether to run the script synchronously (default is TRUE)
*
* @return mixed
*/
Expand Down

0 comments on commit cd7f67e

Please sign in to comment.