Remove type declaration from constructor

This commit is contained in:
Kijin Sung 2020-06-16 15:46:50 +09:00
parent e23c693446
commit 5a53570dd1

View file

@ -21,7 +21,7 @@ abstract class Base implements \Rhymix\Framework\Drivers\PushInterface
/** /**
* Direct invocation of the constructor is not permitted. * Direct invocation of the constructor is not permitted.
*/ */
protected function __construct(array $config): void protected function __construct(array $config)
{ {
$this->_config = $config; $this->_config = $config;
} }