Skip to content

Commit c658256

Browse files
committed
Fix "Implicitly marking parameter $parent as nullable is deprecated"
1 parent 89dde18 commit c658256

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/main/php/rdbms/DriverImplementationsProvider.class.php

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,8 @@
88
abstract class DriverImplementationsProvider {
99
protected $parent= null;
1010

11-
/**
12-
* Constructor
13-
*
14-
* @param rdbms.DriverImplementationsProvider parent
15-
*/
16-
public function __construct(self $parent= null) {
11+
/** @param self $parent */
12+
public function __construct($parent= null) {
1713
$this->parent= $parent;
1814
}
1915

0 commit comments

Comments
 (0)