Skip to content
Snippets Groups Projects

3492430 fix nullable types

6 files
+ 6
6
Compare changes
  • Side-by-side
  • Inline
Files
6
@@ -18,7 +18,7 @@ class PluginNotFoundException extends CorePluginNotFoundException {
@@ -18,7 +18,7 @@ class PluginNotFoundException extends CorePluginNotFoundException {
/**
/**
* @inheritDoc
* @inheritDoc
*/
*/
public function __construct($plugin_id, $message = '', $code = 0, \Exception $previous = NULL) {
public function __construct($plugin_id, $message = '', $code = 0, ?\Exception $previous = NULL) {
parent::__construct($plugin_id, $message, $code, $previous);
parent::__construct($plugin_id, $message, $code, $previous);
$this->pluginId = $plugin_id;
$this->pluginId = $plugin_id;
}
}
Loading