- Fixed nullable errors after forced typing
This commit is contained in:
parent
a552a6675e
commit
d94ee83230
|
@ -13,7 +13,7 @@ abstract class Handler {
|
||||||
|
|
||||||
public bool $registerFatalErrorHandler = true;
|
public bool $registerFatalErrorHandler = true;
|
||||||
|
|
||||||
protected Closure $callback;
|
protected ? Closure $callback;
|
||||||
|
|
||||||
protected Transport\TransportInterface $transport;
|
protected Transport\TransportInterface $transport;
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ use Negundo\Client\DataInterface;
|
||||||
|
|
||||||
class DumpHandler {
|
class DumpHandler {
|
||||||
|
|
||||||
public DataInterface $dataManipulator;
|
public ? DataInterface $dataManipulator;
|
||||||
|
|
||||||
public function __construct(DataInterface $dataManipulator = null)
|
public function __construct(DataInterface $dataManipulator = null)
|
||||||
{
|
{
|
||||||
|
|
|
@ -6,7 +6,7 @@ use Negundo\Client\DataInterface;
|
||||||
|
|
||||||
class TaskHandler {
|
class TaskHandler {
|
||||||
|
|
||||||
public DataInterface $dataManipulator;
|
public ? DataInterface $dataManipulator;
|
||||||
|
|
||||||
public function __construct(DataInterface $dataManipulator = null)
|
public function __construct(DataInterface $dataManipulator = null)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue