You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thrownew \LogicException('The extension with alias "'.$extension->getAlias().
113
-
'" does not have it\'s getConfiguration() method setup');
112
+
thrownew \LogicException(sprintf('The extension with alias "%s" does not have it\'s getConfiguration() method setup', $extension->getAlias()));
114
113
}
115
114
116
115
if (!$configurationinstanceof ConfigurationInterface) {
117
-
thrownew \LogicException(
118
-
'Configuration class "'.get_class($configuration).
119
-
'" should implement ConfigurationInterface in order to be dumpable');
116
+
thrownew \LogicException(sprintf('Configuration class "%s" should implement ConfigurationInterface in order to be dumpable', get_class($configuration)));
0 commit comments