Skip to content
Snippets Groups Projects
Commit b7eb1b13 authored by Stein Magne Bjorklund's avatar Stein Magne Bjorklund
Browse files

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

parent d8424af4
No related branches found
No related tags found
1 merge request!9WP143: #1362: Missing return statements on ConfigUibOverride::createConfigObject()
Pipeline #278142 passed
......@@ -45,15 +45,14 @@ class ConfigUibOverride implements ConfigFactoryOverrideInterface {
/**
* {@inheritDoc}
*/
public function getCacheSuffix() {
public function getCacheSuffix(): string {
return '';
}
/**
* {@inheritDoc}
*/
public function createConfigObject($name, $collection = StorageInterface::DEFAULT_COLLECTION) {
// @todo Implement createConfigObject() method.
public function createConfigObject($name, $collection = StorageInterface::DEFAULT_COLLECTION): void {
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment