Skip to content
Snippets Groups Projects

WP143: #1362: Missing return statements on ConfigUibOverride::createConfigObject()

Merged Stein Magne Bjorklund requested to merge PHPStan-test into master
1 file
+ 2
3
Compare changes
  • Side-by-side
  • Inline
@@ -45,15 +45,14 @@ class ConfigUibOverride implements ConfigFactoryOverrideInterface {
@@ -45,15 +45,14 @@ class ConfigUibOverride implements ConfigFactoryOverrideInterface {
/**
/**
* {@inheritDoc}
* {@inheritDoc}
*/
*/
public function getCacheSuffix() {
public function getCacheSuffix(): string {
return '';
return '';
}
}
/**
/**
* {@inheritDoc}
* {@inheritDoc}
*/
*/
public function createConfigObject($name, $collection = StorageInterface::DEFAULT_COLLECTION) {
public function createConfigObject($name, $collection = StorageInterface::DEFAULT_COLLECTION): void {
// @todo Implement createConfigObject() method.
}
}
/**
/**
Loading