We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a5186bc + b007cff commit 7fc1139Copy full SHA for 7fc1139
src/aleksip/DataTransformPlugin/DataTransformer.php
@@ -79,7 +79,7 @@ protected function processPattern($pattern)
79
foreach (array_keys($patternSpecificData) as $key) {
80
if (!isset($dataStore['patternSpecific'][$pattern]['data'][$key])) {
81
// Value is default global data.
82
- if (is_object($dataStore[$key])) {
+ if (isset($dataStore[$key]) && is_object($dataStore[$key])) {
83
$patternSpecificData[$key] = clone $dataStore[$key];
84
}
85
0 commit comments