Skip to content

Commit

Permalink
fix(driver): const visibility fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Guikingone committed May 1, 2020
1 parent bdb5cdc commit 4551f96
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Driver/PantherDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ final class PantherDriver extends CoreDriver
{
use PantherTestCaseTrait;

private const CHROME = 'chrome';
private const FIREFOX = 'firefox';
private const SELENIUM = 'selenium';
public const CHROME = 'chrome';
public const FIREFOX = 'firefox';
public const SELENIUM = 'selenium';
private const ALLOWED_DRIVERS = [self::CHROME, self::FIREFOX, self::SELENIUM];
public const DEFAULT_CLIENT_KEY = '_root';

Expand Down

0 comments on commit 4551f96

Please sign in to comment.