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

Commit 3b3bc12

Browse files
committed
fix 'T_VARIABLE'
1 parent abab472 commit 3b3bc12

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

lib/interactions/WebDriverActions.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
*/
1919
class WebDriverActions {
2020

21-
protected WebDriver $driver;
22-
protected WebDriverMouse $mouse;
23-
protected WebDriverCompositeAction $action;
21+
protected $driver;
22+
protected $mouse;
23+
protected $action;
2424

2525
// TODO: add keyboard actions
26-
// protected WebDriverKeyboard $keyboard;
26+
// protected $keyboard;
2727

2828
public function __construct(WebDriver $driver) {
2929
$this->driver = $driver;

lib/interactions/internal/WebDriverMouseAction.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
*/
1919
class WebDriverMouseAction {
2020

21-
protected WebDriverMouse $mouse;
22-
protected WebDriverLocatable $locationProvider;
21+
protected $mouse;
22+
protected $locationProvider;
2323

2424
public function __construct(
2525
WebDriverMouse $mouse,

lib/remote/RemoteMouse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*/
1919
class RemoteMouse implements WebDriverMouse {
2020

21-
private WebDriverCommandExecutor $executor;
21+
private $executor;
2222

2323
public function __construct($executor) {
2424
$this->executor = $executor;

0 commit comments

Comments
 (0)