Completed
Push — develop ( a01e04...dfb4ea )
by David
01:36
created
modules/common/third-party/vendor/symfony/polyfill-mbstring/Mbstring.php 1 patch
Spacing   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -99,12 +99,12 @@  discard block
 block discarded – undo
99 99
             $s = \html_entity_decode($s, \ENT_COMPAT, 'UTF-8');
100 100
             $fromEncoding = 'UTF-8';
101 101
         }
102
-        return \iconv($fromEncoding, $toEncoding . '//IGNORE', $s);
102
+        return \iconv($fromEncoding, $toEncoding.'//IGNORE', $s);
103 103
     }
104 104
     public static function mb_convert_variables($toEncoding, $fromEncoding, &...$vars)
105 105
     {
106 106
         $ok = \true;
107
-        \array_walk_recursive($vars, function (&$v) use(&$ok, $toEncoding, $fromEncoding) {
107
+        \array_walk_recursive($vars, function(&$v) use(&$ok, $toEncoding, $fromEncoding) {
108 108
             if (\false === ($v = self::mb_convert_encoding($v, $toEncoding, $fromEncoding))) {
109 109
                 $ok = \false;
110 110
             }
@@ -121,15 +121,15 @@  discard block
 block discarded – undo
121 121
     }
122 122
     public static function mb_decode_numericentity($s, $convmap, $encoding = null)
123 123
     {
124
-        if (null !== $s && !\is_scalar($s) && !(\is_object($s) && \method_exists($s, '__toString'))) {
125
-            \trigger_error('mb_decode_numericentity() expects parameter 1 to be string, ' . \gettype($s) . ' given', \E_USER_WARNING);
124
+        if (null !== $s && ! \is_scalar($s) && ! (\is_object($s) && \method_exists($s, '__toString'))) {
125
+            \trigger_error('mb_decode_numericentity() expects parameter 1 to be string, '.\gettype($s).' given', \E_USER_WARNING);
126 126
             return null;
127 127
         }
128
-        if (!\is_array($convmap) || 80000 > \PHP_VERSION_ID && !$convmap) {
128
+        if ( ! \is_array($convmap) || 80000 > \PHP_VERSION_ID && ! $convmap) {
129 129
             return \false;
130 130
         }
131
-        if (null !== $encoding && !\is_scalar($encoding)) {
132
-            \trigger_error('mb_decode_numericentity() expects parameter 3 to be string, ' . \gettype($s) . ' given', \E_USER_WARNING);
131
+        if (null !== $encoding && ! \is_scalar($encoding)) {
132
+            \trigger_error('mb_decode_numericentity() expects parameter 3 to be string, '.\gettype($s).' given', \E_USER_WARNING);
133 133
             return '';
134 134
             // Instead of null (cf. mb_encode_numericentity).
135 135
         }
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
         $encoding = self::getEncoding($encoding);
141 141
         if ('UTF-8' === $encoding) {
142 142
             $encoding = null;
143
-            if (!\preg_match('//u', $s)) {
143
+            if ( ! \preg_match('//u', $s)) {
144 144
                 $s = @\iconv('UTF-8', 'UTF-8//IGNORE', $s);
145 145
             }
146 146
         } else {
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
             $convmap[$i] += $convmap[$i + 2];
153 153
             $convmap[$i + 1] += $convmap[$i + 2];
154 154
         }
155
-        $s = \preg_replace_callback('/&#(?:0*([0-9]+)|x0*([0-9a-fA-F]+))(?!&);?/', function (array $m) use($cnt, $convmap) {
155
+        $s = \preg_replace_callback('/&#(?:0*([0-9]+)|x0*([0-9a-fA-F]+))(?!&);?/', function(array $m) use($cnt, $convmap) {
156 156
             $c = isset($m[2]) ? (int) \hexdec($m[2]) : $m[1];
157 157
             for ($i = 0; $i < $cnt; $i += 4) {
158 158
                 if ($c >= $convmap[$i] && $c <= $convmap[$i + 1]) {
@@ -164,24 +164,24 @@  discard block
 block discarded – undo
164 164
         if (null === $encoding) {
165 165
             return $s;
166 166
         }
167
-        return \iconv('UTF-8', $encoding . '//IGNORE', $s);
167
+        return \iconv('UTF-8', $encoding.'//IGNORE', $s);
168 168
     }
169 169
     public static function mb_encode_numericentity($s, $convmap, $encoding = null, $is_hex = \false)
170 170
     {
171
-        if (null !== $s && !\is_scalar($s) && !(\is_object($s) && \method_exists($s, '__toString'))) {
172
-            \trigger_error('mb_encode_numericentity() expects parameter 1 to be string, ' . \gettype($s) . ' given', \E_USER_WARNING);
171
+        if (null !== $s && ! \is_scalar($s) && ! (\is_object($s) && \method_exists($s, '__toString'))) {
172
+            \trigger_error('mb_encode_numericentity() expects parameter 1 to be string, '.\gettype($s).' given', \E_USER_WARNING);
173 173
             return null;
174 174
         }
175
-        if (!\is_array($convmap) || 80000 > \PHP_VERSION_ID && !$convmap) {
175
+        if ( ! \is_array($convmap) || 80000 > \PHP_VERSION_ID && ! $convmap) {
176 176
             return \false;
177 177
         }
178
-        if (null !== $encoding && !\is_scalar($encoding)) {
179
-            \trigger_error('mb_encode_numericentity() expects parameter 3 to be string, ' . \gettype($s) . ' given', \E_USER_WARNING);
178
+        if (null !== $encoding && ! \is_scalar($encoding)) {
179
+            \trigger_error('mb_encode_numericentity() expects parameter 3 to be string, '.\gettype($s).' given', \E_USER_WARNING);
180 180
             return null;
181 181
             // Instead of '' (cf. mb_decode_numericentity).
182 182
         }
183
-        if (null !== $is_hex && !\is_scalar($is_hex)) {
184
-            \trigger_error('mb_encode_numericentity() expects parameter 4 to be boolean, ' . \gettype($s) . ' given', \E_USER_WARNING);
183
+        if (null !== $is_hex && ! \is_scalar($is_hex)) {
184
+            \trigger_error('mb_encode_numericentity() expects parameter 4 to be boolean, '.\gettype($s).' given', \E_USER_WARNING);
185 185
             return null;
186 186
         }
187 187
         $s = (string) $s;
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
         $encoding = self::getEncoding($encoding);
192 192
         if ('UTF-8' === $encoding) {
193 193
             $encoding = null;
194
-            if (!\preg_match('//u', $s)) {
194
+            if ( ! \preg_match('//u', $s)) {
195 195
                 $s = @\iconv('UTF-8', 'UTF-8//IGNORE', $s);
196 196
             }
197 197
         } else {
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
             for ($j = 0; $j < $cnt; $j += 4) {
211 211
                 if ($c >= $convmap[$j] && $c <= $convmap[$j + 1]) {
212 212
                     $cOffset = $c + $convmap[$j + 2] & $convmap[$j + 3];
213
-                    $result .= $is_hex ? \sprintf('&#x%X;', $cOffset) : '&#' . $cOffset . ';';
213
+                    $result .= $is_hex ? \sprintf('&#x%X;', $cOffset) : '&#'.$cOffset.';';
214 214
                     continue 2;
215 215
                 }
216 216
             }
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
         if (null === $encoding) {
220 220
             return $result;
221 221
         }
222
-        return \iconv('UTF-8', $encoding . '//IGNORE', $result);
222
+        return \iconv('UTF-8', $encoding.'//IGNORE', $result);
223 223
     }
224 224
     public static function mb_convert_case($s, $mode, $encoding = null)
225 225
     {
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
         $encoding = self::getEncoding($encoding);
231 231
         if ('UTF-8' === $encoding) {
232 232
             $encoding = null;
233
-            if (!\preg_match('//u', $s)) {
233
+            if ( ! \preg_match('//u', $s)) {
234 234
                 $s = @\iconv('UTF-8', 'UTF-8//IGNORE', $s);
235 235
             }
236 236
         } else {
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
         if (null === $encoding) {
286 286
             return $s;
287 287
         }
288
-        return \iconv('UTF-8', $encoding . '//IGNORE', $s);
288
+        return \iconv('UTF-8', $encoding.'//IGNORE', $s);
289 289
     }
290 290
     public static function mb_internal_encoding($encoding = null)
291 291
     {
@@ -346,7 +346,7 @@  discard block
 block discarded – undo
346 346
         if (null === $encodingList) {
347 347
             $encodingList = self::$encodingList;
348 348
         } else {
349
-            if (!\is_array($encodingList)) {
349
+            if ( ! \is_array($encodingList)) {
350 350
                 $encodingList = \array_map('trim', \explode(',', $encodingList));
351 351
             }
352 352
             $encodingList = \array_map('strtoupper', $encodingList);
@@ -354,7 +354,7 @@  discard block
 block discarded – undo
354 354
         foreach ($encodingList as $enc) {
355 355
             switch ($enc) {
356 356
                 case 'ASCII':
357
-                    if (!\preg_match('/[\\x80-\\xFF]/', $str)) {
357
+                    if ( ! \preg_match('/[\\x80-\\xFF]/', $str)) {
358 358
                         return $enc;
359 359
                     }
360 360
                     break;
@@ -377,7 +377,7 @@  discard block
 block discarded – undo
377 377
         if (null === $encodingList) {
378 378
             return self::$encodingList;
379 379
         }
380
-        if (!\is_array($encodingList)) {
380
+        if ( ! \is_array($encodingList)) {
381 381
             $encodingList = \array_map('trim', \explode(',', $encodingList));
382 382
         }
383 383
         $encodingList = \array_map('strtoupper', $encodingList);
@@ -413,7 +413,7 @@  discard block
 block discarded – undo
413 413
         $needle = (string) $needle;
414 414
         if ('' === $needle) {
415 415
             if (80000 > \PHP_VERSION_ID) {
416
-                \trigger_error(__METHOD__ . ': Empty delimiter', \E_USER_WARNING);
416
+                \trigger_error(__METHOD__.': Empty delimiter', \E_USER_WARNING);
417 417
                 return \false;
418 418
             }
419 419
             return 0;
@@ -443,8 +443,8 @@  discard block
 block discarded – undo
443 443
     }
444 444
     public static function mb_str_split($string, $split_length = 1, $encoding = null)
445 445
     {
446
-        if (null !== $string && !\is_scalar($string) && !(\is_object($string) && \method_exists($string, '__toString'))) {
447
-            \trigger_error('mb_str_split() expects parameter 1 to be string, ' . \gettype($string) . ' given', \E_USER_WARNING);
446
+        if (null !== $string && ! \is_scalar($string) && ! (\is_object($string) && \method_exists($string, '__toString'))) {
447
+            \trigger_error('mb_str_split() expects parameter 1 to be string, '.\gettype($string).' given', \E_USER_WARNING);
448 448
             return null;
449 449
         }
450 450
         if (1 > ($split_length = (int) $split_length)) {
@@ -463,7 +463,7 @@  discard block
 block discarded – undo
463 463
                 $rx .= '.{65535}';
464 464
                 $split_length -= 65535;
465 465
             }
466
-            $rx .= '.{' . $split_length . '})/us';
466
+            $rx .= '.{'.$split_length.'})/us';
467 467
             return \preg_split($rx, $string, -1, \PREG_SPLIT_DELIM_CAPTURE | \PREG_SPLIT_NO_EMPTY);
468 468
         }
469 469
         $result = [];
@@ -605,11 +605,11 @@  discard block
 block discarded – undo
605 605
         if (0x80 > ($code %= 0x200000)) {
606 606
             $s = \chr($code);
607 607
         } elseif (0x800 > $code) {
608
-            $s = \chr(0xc0 | $code >> 6) . \chr(0x80 | $code & 0x3f);
608
+            $s = \chr(0xc0 | $code >> 6).\chr(0x80 | $code & 0x3f);
609 609
         } elseif (0x10000 > $code) {
610
-            $s = \chr(0xe0 | $code >> 12) . \chr(0x80 | $code >> 6 & 0x3f) . \chr(0x80 | $code & 0x3f);
610
+            $s = \chr(0xe0 | $code >> 12).\chr(0x80 | $code >> 6 & 0x3f).\chr(0x80 | $code & 0x3f);
611 611
         } else {
612
-            $s = \chr(0xf0 | $code >> 18) . \chr(0x80 | $code >> 12 & 0x3f) . \chr(0x80 | $code >> 6 & 0x3f) . \chr(0x80 | $code & 0x3f);
612
+            $s = \chr(0xf0 | $code >> 18).\chr(0x80 | $code >> 12 & 0x3f).\chr(0x80 | $code >> 6 & 0x3f).\chr(0x80 | $code & 0x3f);
613 613
         }
614 614
         if ('UTF-8' !== ($encoding = self::getEncoding($encoding))) {
615 615
             $s = \mb_convert_encoding($s, $encoding, 'UTF-8');
@@ -663,17 +663,17 @@  discard block
 block discarded – undo
663 663
             } else {
664 664
                 $c = ($m[$i++] - 0xc0 << 6) + $m[$i++] - 0x80;
665 665
             }
666
-            $entities .= '&#' . $c . ';';
666
+            $entities .= '&#'.$c.';';
667 667
         }
668 668
         return $entities;
669 669
     }
670 670
     private static function title_case(array $s)
671 671
     {
672
-        return self::mb_convert_case($s[1], \MB_CASE_UPPER, 'UTF-8') . self::mb_convert_case($s[2], \MB_CASE_LOWER, 'UTF-8');
672
+        return self::mb_convert_case($s[1], \MB_CASE_UPPER, 'UTF-8').self::mb_convert_case($s[2], \MB_CASE_LOWER, 'UTF-8');
673 673
     }
674 674
     private static function getData($file)
675 675
     {
676
-        if (\file_exists($file = __DIR__ . '/Resources/unidata/' . $file . '.php')) {
676
+        if (\file_exists($file = __DIR__.'/Resources/unidata/'.$file.'.php')) {
677 677
             return require $file;
678 678
         }
679 679
         return \false;
Please login to merge, or discard this patch.
src/modules/common/third-party/vendor/symfony/yaml/Unescaper.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -45,11 +45,11 @@  discard block
 block discarded – undo
45 45
      */
46 46
     public function unescapeDoubleQuotedString($value)
47 47
     {
48
-        $callback = function ($match) {
48
+        $callback = function($match) {
49 49
             return $this->unescapeCharacter($match[0]);
50 50
         };
51 51
         // evaluate the string
52
-        return \preg_replace_callback('/' . self::REGEX_ESCAPED_CHARACTER . '/u', $callback, $value);
52
+        return \preg_replace_callback('/'.self::REGEX_ESCAPED_CHARACTER.'/u', $callback, $value);
53 53
     }
54 54
     /**
55 55
      * Unescapes a character that was found in a double-quoted string.
@@ -124,11 +124,11 @@  discard block
 block discarded – undo
124 124
             return \chr($c);
125 125
         }
126 126
         if (0x800 > $c) {
127
-            return \chr(0xc0 | $c >> 6) . \chr(0x80 | $c & 0x3f);
127
+            return \chr(0xc0 | $c >> 6).\chr(0x80 | $c & 0x3f);
128 128
         }
129 129
         if (0x10000 > $c) {
130
-            return \chr(0xe0 | $c >> 12) . \chr(0x80 | $c >> 6 & 0x3f) . \chr(0x80 | $c & 0x3f);
130
+            return \chr(0xe0 | $c >> 12).\chr(0x80 | $c >> 6 & 0x3f).\chr(0x80 | $c & 0x3f);
131 131
         }
132
-        return \chr(0xf0 | $c >> 18) . \chr(0x80 | $c >> 12 & 0x3f) . \chr(0x80 | $c >> 6 & 0x3f) . \chr(0x80 | $c & 0x3f);
132
+        return \chr(0xf0 | $c >> 18).\chr(0x80 | $c >> 12 & 0x3f).\chr(0x80 | $c >> 6 & 0x3f).\chr(0x80 | $c & 0x3f);
133 133
     }
134 134
 }
Please login to merge, or discard this patch.
src/modules/common/third-party/vendor/symfony/yaml/Escaper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      */
38 38
     public static function requiresDoubleQuoting($value)
39 39
     {
40
-        return 0 < \preg_match('/' . self::REGEX_CHARACTER_TO_ESCAPE . '/u', $value);
40
+        return 0 < \preg_match('/'.self::REGEX_CHARACTER_TO_ESCAPE.'/u', $value);
41 41
     }
42 42
     /**
43 43
      * Escapes and surrounds a PHP value with double quotes.
Please login to merge, or discard this patch.
src/modules/common/third-party/vendor/symfony/yaml/Command/LintCommand.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -72,13 +72,13 @@  discard block
 block discarded – undo
72 72
         $this->format = $input->getOption('format');
73 73
         $this->displayCorrectFiles = $output->isVerbose();
74 74
         $flags = $input->getOption('parse-tags') ? Yaml::PARSE_CUSTOM_TAGS : 0;
75
-        if (!$filename) {
76
-            if (!($stdin = $this->getStdin())) {
75
+        if ( ! $filename) {
76
+            if ( ! ($stdin = $this->getStdin())) {
77 77
                 throw new RuntimeException('Please provide a filename or pipe file content to STDIN.');
78 78
             }
79 79
             return $this->display($io, [$this->validate($stdin, $flags)]);
80 80
         }
81
-        if (!$this->isReadable($filename)) {
81
+        if ( ! $this->isReadable($filename)) {
82 82
             throw new RuntimeException(\sprintf('File or directory "%s" is not readable.', $filename));
83 83
         }
84 84
         $filesInfo = [];
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
     }
90 90
     private function validate($content, $flags, $file = null)
91 91
     {
92
-        $prevErrorHandler = \set_error_handler(function ($level, $message, $file, $line) use(&$prevErrorHandler) {
92
+        $prevErrorHandler = \set_error_handler(function($level, $message, $file, $line) use(&$prevErrorHandler) {
93 93
             if (\E_USER_DEPRECATED === $level) {
94 94
                 throw new ParseException($message, $this->getParser()->getRealCurrentLineNb() + 1);
95 95
             }
@@ -121,10 +121,10 @@  discard block
 block discarded – undo
121 121
         $erroredFiles = 0;
122 122
         foreach ($filesInfo as $info) {
123 123
             if ($info['valid'] && $this->displayCorrectFiles) {
124
-                $io->comment('<info>OK</info>' . ($info['file'] ? \sprintf(' in %s', $info['file']) : ''));
125
-            } elseif (!$info['valid']) {
124
+                $io->comment('<info>OK</info>'.($info['file'] ? \sprintf(' in %s', $info['file']) : ''));
125
+            } elseif ( ! $info['valid']) {
126 126
                 ++$erroredFiles;
127
-                $io->text('<error> ERROR </error>' . ($info['file'] ? \sprintf(' in %s', $info['file']) : ''));
127
+                $io->text('<error> ERROR </error>'.($info['file'] ? \sprintf(' in %s', $info['file']) : ''));
128 128
                 $io->text(\sprintf('<error> >> %s</error>', $info['message']));
129 129
             }
130 130
         }
@@ -138,9 +138,9 @@  discard block
 block discarded – undo
138 138
     private function displayJson(SymfonyStyle $io, array $filesInfo)
139 139
     {
140 140
         $errors = 0;
141
-        \array_walk($filesInfo, function (&$v) use(&$errors) {
141
+        \array_walk($filesInfo, function(&$v) use(&$errors) {
142 142
             $v['file'] = (string) $v['file'];
143
-            if (!$v['valid']) {
143
+            if ( ! $v['valid']) {
144 144
                 ++$errors;
145 145
             }
146 146
         });
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
             return;
155 155
         }
156 156
         foreach ($this->getDirectoryIterator($fileOrDirectory) as $file) {
157
-            if (!\in_array($file->getExtension(), ['yml', 'yaml'])) {
157
+            if ( ! \in_array($file->getExtension(), ['yml', 'yaml'])) {
158 158
                 continue;
159 159
             }
160 160
             (yield $file);
@@ -169,21 +169,21 @@  discard block
 block discarded – undo
169 169
             return null;
170 170
         }
171 171
         $inputs = '';
172
-        while (!\feof(\STDIN)) {
172
+        while ( ! \feof(\STDIN)) {
173 173
             $inputs .= \fread(\STDIN, 1024);
174 174
         }
175 175
         return $inputs;
176 176
     }
177 177
     private function getParser()
178 178
     {
179
-        if (!$this->parser) {
179
+        if ( ! $this->parser) {
180 180
             $this->parser = new Parser();
181 181
         }
182 182
         return $this->parser;
183 183
     }
184 184
     private function getDirectoryIterator($directory)
185 185
     {
186
-        $default = function ($directory) {
186
+        $default = function($directory) {
187 187
             return new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($directory, \FilesystemIterator::SKIP_DOTS | \FilesystemIterator::FOLLOW_SYMLINKS), \RecursiveIteratorIterator::LEAVES_ONLY);
188 188
         };
189 189
         if (null !== $this->directoryIteratorProvider) {
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
     }
194 194
     private function isReadable($fileOrDirectory)
195 195
     {
196
-        $default = function ($fileOrDirectory) {
196
+        $default = function($fileOrDirectory) {
197 197
             return \is_readable($fileOrDirectory);
198 198
         };
199 199
         if (null !== $this->isReadableProvider) {
Please login to merge, or discard this patch.
src/modules/common/third-party/vendor/symfony/yaml/Dumper.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
      */
46 46
     public function setIndentation($num)
47 47
     {
48
-        @\trigger_error('The ' . __METHOD__ . ' method is deprecated since Symfony 3.1 and will be removed in 4.0. Pass the indentation to the constructor instead.', \E_USER_DEPRECATED);
48
+        @\trigger_error('The '.__METHOD__.' method is deprecated since Symfony 3.1 and will be removed in 4.0. Pass the indentation to the constructor instead.', \E_USER_DEPRECATED);
49 49
         $this->indentation = (int) $num;
50 50
     }
51 51
     /**
@@ -80,8 +80,8 @@  discard block
 block discarded – undo
80 80
         if (Yaml::DUMP_OBJECT_AS_MAP & $flags && ($input instanceof \ArrayObject || $input instanceof \stdClass)) {
81 81
             $dumpObjectAsInlineMap = empty((array) $input);
82 82
         }
83
-        if ($inline <= 0 || !\is_array($input) && !$input instanceof TaggedValue && $dumpObjectAsInlineMap || empty($input)) {
84
-            $output .= $prefix . Inline::dump($input, $flags);
83
+        if ($inline <= 0 || ! \is_array($input) && ! $input instanceof TaggedValue && $dumpObjectAsInlineMap || empty($input)) {
84
+            $output .= $prefix.Inline::dump($input, $flags);
85 85
         } else {
86 86
             $dumpAsMap = Inline::isHash($input);
87 87
             foreach ($input as $key => $value) {
@@ -89,14 +89,14 @@  discard block
 block discarded – undo
89 89
                     // If the first line starts with a space character, the spec requires a blockIndicationIndicator
90 90
                     // http://www.yaml.org/spec/1.2/spec.html#id2793979
91 91
                     $blockIndentationIndicator = ' ' === \substr($value, 0, 1) ? (string) $this->indentation : '';
92
-                    $output .= \sprintf("%s%s%s |%s\n", $prefix, $dumpAsMap ? Inline::dump($key, $flags) . ':' : '-', '', $blockIndentationIndicator);
92
+                    $output .= \sprintf("%s%s%s |%s\n", $prefix, $dumpAsMap ? Inline::dump($key, $flags).':' : '-', '', $blockIndentationIndicator);
93 93
                     foreach (\explode("\n", $value) as $row) {
94 94
                         $output .= \sprintf("%s%s%s\n", $prefix, \str_repeat(' ', $this->indentation), $row);
95 95
                     }
96 96
                     continue;
97 97
                 }
98 98
                 if ($value instanceof TaggedValue) {
99
-                    $output .= \sprintf('%s%s !%s', $prefix, $dumpAsMap ? Inline::dump($key, $flags) . ':' : '-', $value->getTag());
99
+                    $output .= \sprintf('%s%s !%s', $prefix, $dumpAsMap ? Inline::dump($key, $flags).':' : '-', $value->getTag());
100 100
                     if ($inline >= 1 && Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK & $flags && \is_string($value->getValue()) && \false !== \strpos($value->getValue(), "\n") && \false === \strpos($value->getValue(), "\r\n")) {
101 101
                         // If the first line starts with a space character, the spec requires a blockIndicationIndicator
102 102
                         // http://www.yaml.org/spec/1.2/spec.html#id2793979
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
                         continue;
109 109
                     }
110 110
                     if ($inline - 1 <= 0 || null === $value->getValue() || \is_scalar($value->getValue())) {
111
-                        $output .= ' ' . $this->dump($value->getValue(), $inline - 1, 0, $flags) . "\n";
111
+                        $output .= ' '.$this->dump($value->getValue(), $inline - 1, 0, $flags)."\n";
112 112
                     } else {
113 113
                         $output .= "\n";
114 114
                         $output .= $this->dump($value->getValue(), $inline - 1, $dumpAsMap ? $indent + $this->indentation : $indent + 2, $flags);
@@ -119,8 +119,8 @@  discard block
 block discarded – undo
119 119
                 if (Yaml::DUMP_OBJECT_AS_MAP & $flags && ($value instanceof \ArrayObject || $value instanceof \stdClass)) {
120 120
                     $dumpObjectAsInlineMap = empty((array) $value);
121 121
                 }
122
-                $willBeInlined = $inline - 1 <= 0 || !\is_array($value) && $dumpObjectAsInlineMap || empty($value);
123
-                $output .= \sprintf('%s%s%s%s', $prefix, $dumpAsMap ? Inline::dump($key, $flags) . ':' : '-', $willBeInlined ? ' ' : "\n", $this->dump($value, $inline - 1, $willBeInlined ? 0 : $indent + $this->indentation, $flags)) . ($willBeInlined ? "\n" : '');
122
+                $willBeInlined = $inline - 1 <= 0 || ! \is_array($value) && $dumpObjectAsInlineMap || empty($value);
123
+                $output .= \sprintf('%s%s%s%s', $prefix, $dumpAsMap ? Inline::dump($key, $flags).':' : '-', $willBeInlined ? ' ' : "\n", $this->dump($value, $inline - 1, $willBeInlined ? 0 : $indent + $this->indentation, $flags)).($willBeInlined ? "\n" : '');
124 124
             }
125 125
         }
126 126
         return $output;
Please login to merge, or discard this patch.
src/modules/common/third-party/vendor/symfony/yaml/Parser.php 1 patch
Spacing   +52 added lines, -52 removed lines patch added patch discarded remove patch
@@ -58,10 +58,10 @@  discard block
 block discarded – undo
58 58
      */
59 59
     public function parseFile($filename, $flags = 0)
60 60
     {
61
-        if (!\is_file($filename)) {
61
+        if ( ! \is_file($filename)) {
62 62
             throw new ParseException(\sprintf('File "%s" does not exist.', $filename));
63 63
         }
64
-        if (!\is_readable($filename)) {
64
+        if ( ! \is_readable($filename)) {
65 65
             throw new ParseException(\sprintf('File "%s" cannot be read.', $filename));
66 66
         }
67 67
         $this->filename = $filename;
@@ -146,19 +146,19 @@  discard block
 block discarded – undo
146 146
         if (null === $this->totalNumberOfLines) {
147 147
             $this->totalNumberOfLines = \count($this->lines);
148 148
         }
149
-        if (!$this->moveToNextLine()) {
149
+        if ( ! $this->moveToNextLine()) {
150 150
             return null;
151 151
         }
152 152
         $data = [];
153 153
         $context = null;
154 154
         $allowOverwrite = \false;
155 155
         while ($this->isCurrentLineEmpty()) {
156
-            if (!$this->moveToNextLine()) {
156
+            if ( ! $this->moveToNextLine()) {
157 157
                 return null;
158 158
             }
159 159
         }
160 160
         // Resolves the tag and returns if end of the document
161
-        if (null !== ($tag = $this->getLineTag($this->currentLine, $flags, \false)) && !$this->moveToNextLine()) {
161
+        if (null !== ($tag = $this->getLineTag($this->currentLine, $flags, \false)) && ! $this->moveToNextLine()) {
162 162
             return new TaggedValue($tag, '');
163 163
         }
164 164
         do {
@@ -185,16 +185,16 @@  discard block
 block discarded – undo
185 185
                     @\trigger_error($this->getDeprecationMessage('Starting an unquoted string with a question mark followed by a space is deprecated since Symfony 3.3 and will throw \\Symfony\\Component\\Yaml\\Exception\\ParseException in 4.0.'), \E_USER_DEPRECATED);
186 186
                 }
187 187
                 // array
188
-                if (!isset($values['value']) || '' == \trim($values['value'], ' ') || 0 === \strpos(\ltrim($values['value'], ' '), '#')) {
188
+                if ( ! isset($values['value']) || '' == \trim($values['value'], ' ') || 0 === \strpos(\ltrim($values['value'], ' '), '#')) {
189 189
                     $data[] = $this->parseBlock($this->getRealCurrentLineNb() + 1, $this->getNextEmbedBlock(null, \true), $flags);
190 190
                 } elseif (null !== ($subTag = $this->getLineTag(\ltrim($values['value'], ' '), $flags))) {
191 191
                     $data[] = new TaggedValue($subTag, $this->parseBlock($this->getRealCurrentLineNb() + 1, $this->getNextEmbedBlock(null, \true), $flags));
192 192
                 } else {
193
-                    if (isset($values['leadspaces']) && ('!' === $values['value'][0] || self::preg_match('#^(?P<key>' . Inline::REGEX_QUOTED_STRING . '|[^ \'"\\{\\[].*?) *\\:(\\s+(?P<value>.+?))?\\s*$#u', $this->trimTag($values['value']), $matches))) {
193
+                    if (isset($values['leadspaces']) && ('!' === $values['value'][0] || self::preg_match('#^(?P<key>'.Inline::REGEX_QUOTED_STRING.'|[^ \'"\\{\\[].*?) *\\:(\\s+(?P<value>.+?))?\\s*$#u', $this->trimTag($values['value']), $matches))) {
194 194
                         // this is a compact notation element, add to next block and parse
195 195
                         $block = $values['value'];
196 196
                         if ($this->isNextLineIndented()) {
197
-                            $block .= "\n" . $this->getNextEmbedBlock($this->getCurrentLineIndentation() + \strlen($values['leadspaces']) + 1);
197
+                            $block .= "\n".$this->getNextEmbedBlock($this->getCurrentLineIndentation() + \strlen($values['leadspaces']) + 1);
198 198
                         }
199 199
                         $data[] = $this->parseBlock($this->getRealCurrentLineNb(), $block, $flags);
200 200
                     } else {
@@ -205,14 +205,14 @@  discard block
 block discarded – undo
205 205
                     $this->refs[$isRef] = \end($data);
206 206
                     \array_pop($this->refsBeingParsed);
207 207
                 }
208
-            } elseif (self::preg_match('#^(?P<key>(?:![^\\s]++\\s++)?(?:' . Inline::REGEX_QUOTED_STRING . '|(?:!?!php/const:)?[^ \'"\\[\\{!].*?)) *\\:(\\s++(?P<value>.+))?$#u', \rtrim($this->currentLine), $values) && (\false === \strpos($values['key'], ' #') || \in_array($values['key'][0], ['"', "'"]))) {
208
+            } elseif (self::preg_match('#^(?P<key>(?:![^\\s]++\\s++)?(?:'.Inline::REGEX_QUOTED_STRING.'|(?:!?!php/const:)?[^ \'"\\[\\{!].*?)) *\\:(\\s++(?P<value>.+))?$#u', \rtrim($this->currentLine), $values) && (\false === \strpos($values['key'], ' #') || \in_array($values['key'][0], ['"', "'"]))) {
209 209
                 if ($context && 'sequence' == $context) {
210 210
                     throw new ParseException('You cannot define a mapping item when in a sequence.', $this->currentLineNb + 1, $this->currentLine, $this->filename);
211 211
                 }
212 212
                 $context = 'mapping';
213 213
                 try {
214 214
                     $i = 0;
215
-                    $evaluateKey = !(Yaml::PARSE_KEYS_AS_STRINGS & $flags);
215
+                    $evaluateKey = ! (Yaml::PARSE_KEYS_AS_STRINGS & $flags);
216 216
                     // constants in key will be evaluated anyway
217 217
                     if (isset($values['key'][0]) && '!' === $values['key'][0] && Yaml::PARSE_CONSTANT & $flags) {
218 218
                         $evaluateKey = \true;
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
                     $e->setSnippet($this->currentLine);
224 224
                     throw $e;
225 225
                 }
226
-                if (!\is_string($key) && !\is_int($key)) {
226
+                if ( ! \is_string($key) && ! \is_int($key)) {
227 227
                     $keyType = \is_numeric($key) ? 'numeric key' : 'non-string key';
228 228
                     @\trigger_error($this->getDeprecationMessage(\sprintf('Implicit casting of %s to string is deprecated since Symfony 3.3 and will throw \\Symfony\\Component\\Yaml\\Exception\\ParseException in 4.0. Quote your evaluable mapping keys instead.', $keyType)), \E_USER_DEPRECATED);
229 229
                 }
@@ -231,12 +231,12 @@  discard block
 block discarded – undo
231 231
                 if (\is_float($key)) {
232 232
                     $key = (string) $key;
233 233
                 }
234
-                if ('<<' === $key && (!isset($values['value']) || !self::preg_match('#^&(?P<ref>[^ ]+)#u', $values['value'], $refMatches))) {
234
+                if ('<<' === $key && ( ! isset($values['value']) || ! self::preg_match('#^&(?P<ref>[^ ]+)#u', $values['value'], $refMatches))) {
235 235
                     $mergeNode = \true;
236 236
                     $allowOverwrite = \true;
237 237
                     if (isset($values['value'][0]) && '*' === $values['value'][0]) {
238 238
                         $refName = \substr(\rtrim($values['value']), 1);
239
-                        if (!\array_key_exists($refName, $this->refs)) {
239
+                        if ( ! \array_key_exists($refName, $this->refs)) {
240 240
                             if (\false !== ($pos = \array_search($refName, $this->refsBeingParsed, \true))) {
241 241
                                 throw new ParseException(\sprintf('Circular reference [%s, %s] detected for reference "%s".', \implode(', ', \array_slice($this->refsBeingParsed, $pos)), $refName, $refName), $this->currentLineNb + 1, $this->currentLine, $this->filename);
242 242
                             }
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
                         if (Yaml::PARSE_OBJECT_FOR_MAP & $flags && $refValue instanceof \stdClass) {
247 247
                             $refValue = (array) $refValue;
248 248
                         }
249
-                        if (!\is_array($refValue)) {
249
+                        if ( ! \is_array($refValue)) {
250 250
                             throw new ParseException('YAML merge keys used with a scalar value instead of an array.', $this->getRealCurrentLineNb() + 1, $this->currentLine, $this->filename);
251 251
                         }
252 252
                         $data += $refValue;
@@ -261,7 +261,7 @@  discard block
 block discarded – undo
261 261
                         if (Yaml::PARSE_OBJECT_FOR_MAP & $flags && $parsed instanceof \stdClass) {
262 262
                             $parsed = (array) $parsed;
263 263
                         }
264
-                        if (!\is_array($parsed)) {
264
+                        if ( ! \is_array($parsed)) {
265 265
                             throw new ParseException('YAML merge keys used with a scalar value instead of an array.', $this->getRealCurrentLineNb() + 1, $this->currentLine, $this->filename);
266 266
                         }
267 267
                         if (isset($parsed[0])) {
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
                                 if (Yaml::PARSE_OBJECT_FOR_MAP & $flags && $parsedItem instanceof \stdClass) {
273 273
                                     $parsedItem = (array) $parsedItem;
274 274
                                 }
275
-                                if (!\is_array($parsedItem)) {
275
+                                if ( ! \is_array($parsedItem)) {
276 276
                                     throw new ParseException('Merge items must be arrays.', $this->getRealCurrentLineNb() + 1, $parsedItem, $this->filename);
277 277
                                 }
278 278
                                 $data += $parsedItem;
@@ -293,13 +293,13 @@  discard block
 block discarded – undo
293 293
                 $subTag = null;
294 294
                 if ($mergeNode) {
295 295
                     // Merge keys
296
-                } elseif (!isset($values['value']) || '' === $values['value'] || 0 === \strpos($values['value'], '#') || null !== ($subTag = $this->getLineTag($values['value'], $flags)) || '<<' === $key) {
296
+                } elseif ( ! isset($values['value']) || '' === $values['value'] || 0 === \strpos($values['value'], '#') || null !== ($subTag = $this->getLineTag($values['value'], $flags)) || '<<' === $key) {
297 297
                     // hash
298 298
                     // if next line is less indented or equal, then it means that the current value is null
299
-                    if (!$this->isNextLineIndented() && !$this->isNextLineUnIndentedCollection()) {
299
+                    if ( ! $this->isNextLineIndented() && ! $this->isNextLineUnIndentedCollection()) {
300 300
                         // Spec: Keys MUST be unique; first one wins.
301 301
                         // But overwriting is allowed when a merge node is used in current block.
302
-                        if ($allowOverwrite || !isset($data[$key])) {
302
+                        if ($allowOverwrite || ! isset($data[$key])) {
303 303
                             if (null !== $subTag) {
304 304
                                 $data[$key] = new TaggedValue($subTag, '');
305 305
                             } else {
@@ -316,7 +316,7 @@  discard block
 block discarded – undo
316 316
                                 $value = (array) $value;
317 317
                             }
318 318
                             $data += $value;
319
-                        } elseif ($allowOverwrite || !isset($data[$key])) {
319
+                        } elseif ($allowOverwrite || ! isset($data[$key])) {
320 320
                             // Spec: Keys MUST be unique; first one wins.
321 321
                             // But overwriting is allowed when a merge node is used in current block.
322 322
                             if (null !== $subTag) {
@@ -332,7 +332,7 @@  discard block
 block discarded – undo
332 332
                     $value = $this->parseValue(\rtrim($values['value']), $flags, $context);
333 333
                     // Spec: Keys MUST be unique; first one wins.
334 334
                     // But overwriting is allowed when a merge node is used in current block.
335
-                    if ($allowOverwrite || !isset($data[$key])) {
335
+                    if ($allowOverwrite || ! isset($data[$key])) {
336 336
                         $data[$key] = $value;
337 337
                     } else {
338 338
                         @\trigger_error($this->getDeprecationMessage(\sprintf('Duplicate key "%s" detected whilst parsing YAML. Silent handling of duplicate mapping keys in YAML is deprecated since Symfony 3.2 and will throw \\Symfony\\Component\\Yaml\\Exception\\ParseException in 4.0.', $key)), \E_USER_DEPRECATED);
@@ -371,12 +371,12 @@  discard block
 block discarded – undo
371 371
                             continue;
372 372
                         }
373 373
                         // If the indentation is not consistent at offset 0, it is to be considered as a ParseError
374
-                        if (0 === $this->offset && !$deprecatedUsage && isset($line[0]) && ' ' === $line[0]) {
374
+                        if (0 === $this->offset && ! $deprecatedUsage && isset($line[0]) && ' ' === $line[0]) {
375 375
                             throw new ParseException('Unable to parse.', $this->getRealCurrentLineNb() + 1, $this->currentLine, $this->filename);
376 376
                         }
377 377
                         if ('' === \trim($line)) {
378 378
                             $value .= "\n";
379
-                        } elseif (!$previousLineWasNewline && !$previousLineWasTerminatedWithBackslash) {
379
+                        } elseif ( ! $previousLineWasNewline && ! $previousLineWasTerminatedWithBackslash) {
380 380
                             $value .= ' ';
381 381
                         }
382 382
                         if ('' !== \trim($line) && '\\' === \substr($line, -1)) {
@@ -407,7 +407,7 @@  discard block
 block discarded – undo
407 407
         if (null !== $tag) {
408 408
             $data = new TaggedValue($tag, $data);
409 409
         }
410
-        if (Yaml::PARSE_OBJECT_FOR_MAP & $flags && !\is_object($data) && 'mapping' === $context) {
410
+        if (Yaml::PARSE_OBJECT_FOR_MAP & $flags && ! \is_object($data) && 'mapping' === $context) {
411 411
             $object = new \stdClass();
412 412
             foreach ($data as $key => $value) {
413 413
                 $object->{$key} = $value;
@@ -429,7 +429,7 @@  discard block
 block discarded – undo
429 429
         $parser->offset = $offset;
430 430
         $parser->totalNumberOfLines = $this->totalNumberOfLines;
431 431
         $parser->skippedLineNumbers = $skippedLineNumbers;
432
-        $parser->refs =& $this->refs;
432
+        $parser->refs = & $this->refs;
433 433
         $parser->refsBeingParsed = $this->refsBeingParsed;
434 434
         return $parser->doParse($yaml, $flags);
435 435
     }
@@ -473,7 +473,7 @@  discard block
 block discarded – undo
473 473
     private function getNextEmbedBlock($indentation = null, $inSequence = \false)
474 474
     {
475 475
         $oldLineIndentation = $this->getCurrentLineIndentation();
476
-        if (!$this->moveToNextLine()) {
476
+        if ( ! $this->moveToNextLine()) {
477 477
             return '';
478 478
         }
479 479
         if (null === $indentation) {
@@ -483,19 +483,19 @@  discard block
 block discarded – undo
483 483
                 $EOF = \false;
484 484
                 // empty and comment-like lines do not influence the indentation depth
485 485
                 if ($this->isCurrentLineEmpty() || $this->isCurrentLineComment()) {
486
-                    $EOF = !$this->moveToNextLine();
487
-                    if (!$EOF) {
486
+                    $EOF = ! $this->moveToNextLine();
487
+                    if ( ! $EOF) {
488 488
                         ++$movements;
489 489
                     }
490 490
                 } else {
491 491
                     $newIndent = $this->getCurrentLineIndentation();
492 492
                 }
493
-            } while (!$EOF && null === $newIndent);
493
+            } while ( ! $EOF && null === $newIndent);
494 494
             for ($i = 0; $i < $movements; ++$i) {
495 495
                 $this->moveToPreviousLine();
496 496
             }
497 497
             $unindentedEmbedBlock = $this->isStringUnIndentedCollectionItem();
498
-            if (!$this->isCurrentLineEmpty() && 0 === $newIndent && !$unindentedEmbedBlock) {
498
+            if ( ! $this->isCurrentLineEmpty() && 0 === $newIndent && ! $unindentedEmbedBlock) {
499 499
                 throw new ParseException('Indentation problem.', $this->getRealCurrentLineNb() + 1, $this->currentLine, $this->filename);
500 500
             }
501 501
         } else {
@@ -519,12 +519,12 @@  discard block
 block discarded – undo
519 519
         $isItUnindentedCollection = $this->isStringUnIndentedCollectionItem();
520 520
         $isItComment = $this->isCurrentLineComment();
521 521
         while ($this->moveToNextLine()) {
522
-            if ($isItComment && !$isItUnindentedCollection) {
522
+            if ($isItComment && ! $isItUnindentedCollection) {
523 523
                 $isItUnindentedCollection = $this->isStringUnIndentedCollectionItem();
524 524
                 $isItComment = $this->isCurrentLineComment();
525 525
             }
526 526
             $indent = $this->getCurrentLineIndentation();
527
-            if ($isItUnindentedCollection && !$this->isCurrentLineEmpty() && !$this->isStringUnIndentedCollectionItem() && $newIndent === $indent) {
527
+            if ($isItUnindentedCollection && ! $this->isCurrentLineEmpty() && ! $this->isStringUnIndentedCollectionItem() && $newIndent === $indent) {
528 528
                 $this->moveToPreviousLine();
529 529
                 break;
530 530
             }
@@ -590,7 +590,7 @@  discard block
 block discarded – undo
590 590
             } else {
591 591
                 $value = \substr($value, 1);
592 592
             }
593
-            if (!\array_key_exists($value, $this->refs)) {
593
+            if ( ! \array_key_exists($value, $this->refs)) {
594 594
                 if (\false !== ($pos = \array_search($value, $this->refsBeingParsed, \true))) {
595 595
                     throw new ParseException(\sprintf('Circular reference [%s, %s] detected for reference "%s".', \implode(', ', \array_slice($this->refsBeingParsed, $pos)), $value, $value), $this->currentLineNb + 1, $this->currentLine, $this->filename);
596 596
                 }
@@ -598,7 +598,7 @@  discard block
 block discarded – undo
598 598
             }
599 599
             return $this->refs[$value];
600 600
         }
601
-        if (self::preg_match('/^(?:' . self::TAG_PATTERN . ' +)?' . self::BLOCK_SCALAR_HEADER_PATTERN . '$/', $value, $matches)) {
601
+        if (self::preg_match('/^(?:'.self::TAG_PATTERN.' +)?'.self::BLOCK_SCALAR_HEADER_PATTERN.'$/', $value, $matches)) {
602 602
             $modifiers = isset($matches['modifiers']) ? $matches['modifiers'] : '';
603 603
             $data = $this->parseBlockScalar($matches['separator'], \preg_replace('#\\d+#', '', $modifiers), \abs((int) $modifiers));
604 604
             if ('' !== $matches['tag']) {
@@ -615,7 +615,7 @@  discard block
 block discarded – undo
615 615
         try {
616 616
             $quotation = '' !== $value && ('"' === $value[0] || "'" === $value[0]) ? $value[0] : null;
617 617
             // do not take following lines into account when the current line is a quoted single line value
618
-            if (null !== $quotation && self::preg_match('/^' . $quotation . '.*' . $quotation . '(\\s*#.*)?$/', $value)) {
618
+            if (null !== $quotation && self::preg_match('/^'.$quotation.'.*'.$quotation.'(\\s*#.*)?$/', $value)) {
619 619
                 return Inline::parse($value, $flags, $this->refs);
620 620
             }
621 621
             $lines = [];
@@ -640,7 +640,7 @@  discard block
 block discarded – undo
640 640
                     $value .= $lines[$i];
641 641
                     $previousLineBlank = \false;
642 642
                 } else {
643
-                    $value .= ' ' . $lines[$i];
643
+                    $value .= ' '.$lines[$i];
644 644
                     $previousLineBlank = \false;
645 645
                 }
646 646
             }
@@ -668,7 +668,7 @@  discard block
 block discarded – undo
668 668
     private function parseBlockScalar($style, $chomping = '', $indentation = 0)
669 669
     {
670 670
         $notEOF = $this->moveToNextLine();
671
-        if (!$notEOF) {
671
+        if ( ! $notEOF) {
672 672
             return '';
673 673
         }
674 674
         $isCurrentLineBlank = $this->isCurrentLineBlank();
@@ -708,7 +708,7 @@  discard block
 block discarded – undo
708 708
         if ($notEOF) {
709 709
             $blockLines[] = '';
710 710
             $this->moveToPreviousLine();
711
-        } elseif (!$notEOF && !$this->isCurrentLineLastLineInDocument()) {
711
+        } elseif ( ! $notEOF && ! $this->isCurrentLineLastLineInDocument()) {
712 712
             $blockLines[] = '';
713 713
         }
714 714
         // folded style
@@ -722,11 +722,11 @@  discard block
 block discarded – undo
722 722
                     $previousLineIndented = \false;
723 723
                     $previousLineBlank = \true;
724 724
                 } elseif (' ' === $blockLines[$i][0]) {
725
-                    $text .= "\n" . $blockLines[$i];
725
+                    $text .= "\n".$blockLines[$i];
726 726
                     $previousLineIndented = \true;
727 727
                     $previousLineBlank = \false;
728 728
                 } elseif ($previousLineIndented) {
729
-                    $text .= "\n" . $blockLines[$i];
729
+                    $text .= "\n".$blockLines[$i];
730 730
                     $previousLineIndented = \false;
731 731
                     $previousLineBlank = \false;
732 732
                 } elseif ($previousLineBlank || 0 === $i) {
@@ -734,7 +734,7 @@  discard block
 block discarded – undo
734 734
                     $previousLineIndented = \false;
735 735
                     $previousLineBlank = \false;
736 736
                 } else {
737
-                    $text .= ' ' . $blockLines[$i];
737
+                    $text .= ' '.$blockLines[$i];
738 738
                     $previousLineIndented = \false;
739 739
                     $previousLineBlank = \false;
740 740
                 }
@@ -760,11 +760,11 @@  discard block
 block discarded – undo
760 760
         $currentIndentation = $this->getCurrentLineIndentation();
761 761
         $movements = 0;
762 762
         do {
763
-            $EOF = !$this->moveToNextLine();
764
-            if (!$EOF) {
763
+            $EOF = ! $this->moveToNextLine();
764
+            if ( ! $EOF) {
765 765
                 ++$movements;
766 766
             }
767
-        } while (!$EOF && ($this->isCurrentLineEmpty() || $this->isCurrentLineComment()));
767
+        } while ( ! $EOF && ($this->isCurrentLineEmpty() || $this->isCurrentLineComment()));
768 768
         if ($EOF) {
769 769
             return \false;
770 770
         }
@@ -849,11 +849,11 @@  discard block
 block discarded – undo
849 849
         $currentIndentation = $this->getCurrentLineIndentation();
850 850
         $movements = 0;
851 851
         do {
852
-            $EOF = !$this->moveToNextLine();
853
-            if (!$EOF) {
852
+            $EOF = ! $this->moveToNextLine();
853
+            if ( ! $EOF) {
854 854
                 ++$movements;
855 855
             }
856
-        } while (!$EOF && ($this->isCurrentLineEmpty() || $this->isCurrentLineComment()));
856
+        } while ( ! $EOF && ($this->isCurrentLineEmpty() || $this->isCurrentLineComment()));
857 857
         if ($EOF) {
858 858
             return \false;
859 859
         }
@@ -929,10 +929,10 @@  discard block
 block discarded – undo
929 929
      */
930 930
     private function getLineTag($value, $flags, $nextLineCheck = \true)
931 931
     {
932
-        if ('' === $value || '!' !== $value[0] || 1 !== self::preg_match('/^' . self::TAG_PATTERN . ' *( +#.*)?$/', $value, $matches)) {
932
+        if ('' === $value || '!' !== $value[0] || 1 !== self::preg_match('/^'.self::TAG_PATTERN.' *( +#.*)?$/', $value, $matches)) {
933 933
             return null;
934 934
         }
935
-        if ($nextLineCheck && !$this->isNextLineIndented()) {
935
+        if ($nextLineCheck && ! $this->isNextLineIndented()) {
936 936
             return null;
937 937
         }
938 938
         $tag = \substr($matches['tag'], 1);
@@ -949,9 +949,9 @@  discard block
 block discarded – undo
949 949
     {
950 950
         $message = \rtrim($message, '.');
951 951
         if (null !== $this->filename) {
952
-            $message .= ' in ' . $this->filename;
952
+            $message .= ' in '.$this->filename;
953 953
         }
954
-        $message .= ' on line ' . ($this->getRealCurrentLineNb() + 1);
955
-        return $message . '.';
954
+        $message .= ' on line '.($this->getRealCurrentLineNb() + 1);
955
+        return $message.'.';
956 956
     }
957 957
 }
Please login to merge, or discard this patch.
src/modules/common/third-party/vendor/symfony/yaml/Inline.php 1 patch
Spacing   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
                 $flags = 0;
67 67
             }
68 68
         }
69
-        if (\func_num_args() >= 3 && !\is_array($references)) {
69
+        if (\func_num_args() >= 3 && ! \is_array($references)) {
70 70
             @\trigger_error('Passing a boolean flag to toggle object support is deprecated since Symfony 3.1 and will be removed in 4.0. Use the Yaml::PARSE_OBJECT flag instead.', \E_USER_DEPRECATED);
71 71
             if ($references) {
72 72
                 $flags |= Yaml::PARSE_OBJECT;
@@ -157,10 +157,10 @@  discard block
 block discarded – undo
157 157
                 return $value->format('c');
158 158
             case \is_object($value):
159 159
                 if ($value instanceof TaggedValue) {
160
-                    return '!' . $value->getTag() . ' ' . self::dump($value->getValue(), $flags);
160
+                    return '!'.$value->getTag().' '.self::dump($value->getValue(), $flags);
161 161
                 }
162 162
                 if (Yaml::DUMP_OBJECT & $flags) {
163
-                    return '!php/object ' . self::dump(\serialize($value));
163
+                    return '!php/object '.self::dump(\serialize($value));
164 164
                 }
165 165
                 if (Yaml::DUMP_OBJECT_AS_MAP & $flags && ($value instanceof \stdClass || $value instanceof \ArrayObject)) {
166 166
                     return self::dumpArray($value, $flags & ~Yaml::DUMP_EMPTY_ARRAY_AS_SEQUENCE);
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
                         $repr = \str_ireplace('INF', '.Inf', $repr);
191 191
                     } elseif (\floor($value) == $value && $repr == $value) {
192 192
                         // Preserve float data type since storing a whole number will result in integer value.
193
-                        $repr = '!!float ' . $repr;
193
+                        $repr = '!!float '.$repr;
194 194
                     }
195 195
                 } else {
196 196
                     $repr = \is_string($value) ? "'{$value}'" : (string) $value;
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
             case '' == $value:
203 203
                 return "''";
204 204
             case self::isBinaryString($value):
205
-                return '!!binary ' . \base64_encode($value);
205
+                return '!!binary '.\base64_encode($value);
206 206
             case Escaper::requiresDoubleQuoting($value):
207 207
                 return Escaper::escapeWithDoubleQuotes($value);
208 208
             case Escaper::requiresSingleQuoting($value):
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
     private static function dumpArray($value, $flags)
248 248
     {
249 249
         // array
250
-        if (($value || Yaml::DUMP_EMPTY_ARRAY_AS_SEQUENCE & $flags) && !self::isHash($value)) {
250
+        if (($value || Yaml::DUMP_EMPTY_ARRAY_AS_SEQUENCE & $flags) && ! self::isHash($value)) {
251 251
             $output = [];
252 252
             foreach ($value as $val) {
253 253
                 $output[] = self::dump($val, $flags);
@@ -287,20 +287,20 @@  discard block
 block discarded – undo
287 287
                 if ('' === $tmp) {
288 288
                     throw new ParseException(\sprintf('Unexpected end of line, expected one of "%s".', \implode('', $delimiters)), self::$parsedLineNumber + 1, $scalar, self::$parsedFilename);
289 289
                 }
290
-                if (!\in_array($tmp[0], $delimiters)) {
290
+                if ( ! \in_array($tmp[0], $delimiters)) {
291 291
                     throw new ParseException(\sprintf('Unexpected characters (%s).', \substr($scalar, $i)), self::$parsedLineNumber + 1, $scalar, self::$parsedFilename);
292 292
                 }
293 293
             }
294 294
         } else {
295 295
             // "normal" string
296
-            if (!$delimiters) {
296
+            if ( ! $delimiters) {
297 297
                 $output = \substr($scalar, $i);
298 298
                 $i += \strlen($output);
299 299
                 // remove comments
300 300
                 if (Parser::preg_match('/[ \\t]+#/', $output, $match, \PREG_OFFSET_CAPTURE)) {
301 301
                     $output = \substr($output, 0, $match[0][1]);
302 302
                 }
303
-            } elseif (Parser::preg_match('/^(.' . ($legacyOmittedKeySupport ? '+' : '*') . '?)(' . \implode('|', $delimiters) . ')/', \substr($scalar, $i), $match)) {
303
+            } elseif (Parser::preg_match('/^(.'.($legacyOmittedKeySupport ? '+' : '*').'?)('.\implode('|', $delimiters).')/', \substr($scalar, $i), $match)) {
304 304
                 $output = $match[1];
305 305
                 $i += \strlen($output);
306 306
             } else {
@@ -331,7 +331,7 @@  discard block
 block discarded – undo
331 331
      */
332 332
     private static function parseQuotedScalar($scalar, &$i)
333 333
     {
334
-        if (!Parser::preg_match('/' . self::REGEX_QUOTED_STRING . '/Au', \substr($scalar, $i), $match)) {
334
+        if ( ! Parser::preg_match('/'.self::REGEX_QUOTED_STRING.'/Au', \substr($scalar, $i), $match)) {
335 335
             throw new ParseException(\sprintf('Malformed inline YAML string: "%s".', \substr($scalar, $i)), self::$parsedLineNumber + 1, $scalar, self::$parsedFilename);
336 336
         }
337 337
         $output = \substr($match[0], 1, \strlen($match[0]) - 2);
@@ -384,11 +384,11 @@  discard block
 block discarded – undo
384 384
                     $isQuoted = \in_array($sequence[$i], ['"', "'"]);
385 385
                     $value = self::parseScalar($sequence, $flags, [',', ']'], $i, null === $tag, $references);
386 386
                     // the value can be an array if a reference has been resolved to an array var
387
-                    if (\is_string($value) && !$isQuoted && \false !== \strpos($value, ': ')) {
387
+                    if (\is_string($value) && ! $isQuoted && \false !== \strpos($value, ': ')) {
388 388
                         // embedded mapping?
389 389
                         try {
390 390
                             $pos = 0;
391
-                            $value = self::parseMapping('{' . $value . '}', $flags, $pos, $references);
391
+                            $value = self::parseMapping('{'.$value.'}', $flags, $pos, $references);
392 392
                         } catch (\InvalidArgumentException $e) {
393 393
                             // no, it's not
394 394
                         }
@@ -452,13 +452,13 @@  discard block
 block discarded – undo
452 452
             if (':' === $key) {
453 453
                 @\trigger_error(self::getDeprecationMessage('Omitting the key of a mapping is deprecated and will throw a ParseException in 4.0.'), \E_USER_DEPRECATED);
454 454
             }
455
-            if (!$isKeyQuoted) {
455
+            if ( ! $isKeyQuoted) {
456 456
                 $evaluatedKey = self::evaluateScalar($key, $flags, $references);
457
-                if ('' !== $key && $evaluatedKey !== $key && !\is_string($evaluatedKey) && !\is_int($evaluatedKey)) {
457
+                if ('' !== $key && $evaluatedKey !== $key && ! \is_string($evaluatedKey) && ! \is_int($evaluatedKey)) {
458 458
                     @\trigger_error(self::getDeprecationMessage('Implicit casting of incompatible mapping keys to strings is deprecated since Symfony 3.3 and will throw \\Symfony\\Component\\Yaml\\Exception\\ParseException in 4.0. Quote your evaluable mapping keys instead.'), \E_USER_DEPRECATED);
459 459
                 }
460 460
             }
461
-            if (':' !== $key && !$isKeyQuoted && (!isset($mapping[$i + 1]) || !\in_array($mapping[$i + 1], [' ', ',', '[', ']', '{', '}'], \true))) {
461
+            if (':' !== $key && ! $isKeyQuoted && ( ! isset($mapping[$i + 1]) || ! \in_array($mapping[$i + 1], [' ', ',', '[', ']', '{', '}'], \true))) {
462 462
                 @\trigger_error(self::getDeprecationMessage('Using a colon after an unquoted mapping key that is not followed by an indication character (i.e. " ", ",", "[", "]", "{", "}") is deprecated since Symfony 3.2 and will throw a ParseException in 4.0.'), \E_USER_DEPRECATED);
463 463
             }
464 464
             if ('<<' === $key) {
@@ -482,7 +482,7 @@  discard block
 block discarded – undo
482 482
                             foreach ($value as $parsedValue) {
483 483
                                 $output += $parsedValue;
484 484
                             }
485
-                        } elseif ($allowOverwrite || !isset($output[$key])) {
485
+                        } elseif ($allowOverwrite || ! isset($output[$key])) {
486 486
                             if (null !== $tag) {
487 487
                                 $output[$key] = new TaggedValue($tag, $value);
488 488
                             } else {
@@ -501,7 +501,7 @@  discard block
 block discarded – undo
501 501
                         // But overwriting is allowed when a merge node is used in current block.
502 502
                         if ('<<' === $key) {
503 503
                             $output += $value;
504
-                        } elseif ($allowOverwrite || !isset($output[$key])) {
504
+                        } elseif ($allowOverwrite || ! isset($output[$key])) {
505 505
                             if (null !== $tag) {
506 506
                                 $output[$key] = new TaggedValue($tag, $value);
507 507
                             } else {
@@ -519,7 +519,7 @@  discard block
 block discarded – undo
519 519
                         // But overwriting is allowed when a merge node is used in current block.
520 520
                         if ('<<' === $key) {
521 521
                             $output += $value;
522
-                        } elseif ($allowOverwrite || !isset($output[$key])) {
522
+                        } elseif ($allowOverwrite || ! isset($output[$key])) {
523 523
                             if (null !== $tag) {
524 524
                                 $output[$key] = new TaggedValue($tag, $value);
525 525
                             } else {
@@ -561,7 +561,7 @@  discard block
 block discarded – undo
561 561
             if (\false === $value || '' === $value) {
562 562
                 throw new ParseException('A reference must contain at least one character.', self::$parsedLineNumber + 1, $value, self::$parsedFilename);
563 563
             }
564
-            if (!\array_key_exists($value, $references)) {
564
+            if ( ! \array_key_exists($value, $references)) {
565 565
                 throw new ParseException(\sprintf('Reference "%s" does not exist.', $value), self::$parsedLineNumber + 1, $value, self::$parsedFilename);
566 566
             }
567 567
             return $references[$value];
@@ -605,7 +605,7 @@  discard block
 block discarded – undo
605 605
                         return null;
606 606
                     case 0 === \strpos($scalar, '!php/object'):
607 607
                         if (self::$objectSupport) {
608
-                            if (!isset($scalar[12])) {
608
+                            if ( ! isset($scalar[12])) {
609 609
                                 return \false;
610 610
                             }
611 611
                             return \unserialize(self::parseScalar(\substr($scalar, 12)));
@@ -628,7 +628,7 @@  discard block
 block discarded – undo
628 628
                         return null;
629 629
                     case 0 === \strpos($scalar, '!php/const'):
630 630
                         if (self::$constantSupport) {
631
-                            if (!isset($scalar[11])) {
631
+                            if ( ! isset($scalar[11])) {
632 632
                                 return '';
633 633
                             }
634 634
                             $i = 0;
@@ -670,7 +670,7 @@  discard block
 block discarded – undo
670 670
                     case \is_numeric($scalar):
671 671
                     case Parser::preg_match(self::getHexRegex(), $scalar):
672 672
                         $scalar = \str_replace('_', '', $scalar);
673
-                        return '0x' === $scalar[0] . $scalar[1] ? \hexdec($scalar) : (float) $scalar;
673
+                        return '0x' === $scalar[0].$scalar[1] ? \hexdec($scalar) : (float) $scalar;
674 674
                     case '.inf' === $scalarLower:
675 675
                     case '.nan' === $scalarLower:
676 676
                         return -\log(0);
@@ -713,7 +713,7 @@  discard block
 block discarded – undo
713 713
         $nextOffset = $i + $tagLength + 1;
714 714
         $nextOffset += \strspn($value, ' ', $nextOffset);
715 715
         // Is followed by a scalar
716
-        if ((!isset($value[$nextOffset]) || !\in_array($value[$nextOffset], ['[', '{'], \true)) && 'tagged' !== $tag) {
716
+        if (( ! isset($value[$nextOffset]) || ! \in_array($value[$nextOffset], ['[', '{'], \true)) && 'tagged' !== $tag) {
717 717
             // Manage non-whitelisted scalars in {@link self::evaluateScalar()}
718 718
             return null;
719 719
         }
@@ -740,14 +740,14 @@  discard block
 block discarded – undo
740 740
         if (0 !== \strlen($parsedBinaryData) % 4) {
741 741
             throw new ParseException(\sprintf('The normalized base64 encoded data (data without whitespace characters) length must be a multiple of four (%d bytes given).', \strlen($parsedBinaryData)), self::$parsedLineNumber + 1, $scalar, self::$parsedFilename);
742 742
         }
743
-        if (!Parser::preg_match('#^[A-Z0-9+/]+={0,2}$#i', $parsedBinaryData)) {
743
+        if ( ! Parser::preg_match('#^[A-Z0-9+/]+={0,2}$#i', $parsedBinaryData)) {
744 744
             throw new ParseException(\sprintf('The base64 encoded data (%s) contains invalid characters.', $parsedBinaryData), self::$parsedLineNumber + 1, $scalar, self::$parsedFilename);
745 745
         }
746 746
         return \base64_decode($parsedBinaryData, \true);
747 747
     }
748 748
     private static function isBinaryString($value)
749 749
     {
750
-        return !\preg_match('//u', $value) || \preg_match('/[^\\x00\\x07-\\x0d\\x1B\\x20-\\xff]/', $value);
750
+        return ! \preg_match('//u', $value) || \preg_match('/[^\\x00\\x07-\\x0d\\x1B\\x20-\\xff]/', $value);
751 751
     }
752 752
     /**
753 753
      * Gets a regex that matches a YAML date.
@@ -786,11 +786,11 @@  discard block
 block discarded – undo
786 786
     {
787 787
         $message = \rtrim($message, '.');
788 788
         if (null !== self::$parsedFilename) {
789
-            $message .= ' in ' . self::$parsedFilename;
789
+            $message .= ' in '.self::$parsedFilename;
790 790
         }
791 791
         if (-1 !== self::$parsedLineNumber) {
792
-            $message .= ' on line ' . (self::$parsedLineNumber + 1);
792
+            $message .= ' on line '.(self::$parsedLineNumber + 1);
793 793
         }
794
-        return $message . '.';
794
+        return $message.'.';
795 795
     }
796 796
 }
Please login to merge, or discard this patch.
vendor/mcaskill/composer-exclude-files/src/ExcludeFilePlugin.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -84,11 +84,11 @@  discard block
 block discarded – undo
84 84
     {
85 85
         $composer = $this->composer;
86 86
         $package = $composer->getPackage();
87
-        if (!$package) {
87
+        if ( ! $package) {
88 88
             return;
89 89
         }
90 90
         $excludedFiles = $this->parseExcludedFiles($this->getExcludedFiles($package));
91
-        if (!$excludedFiles) {
91
+        if ( ! $excludedFiles) {
92 92
             return;
93 93
         }
94 94
         $generator = $composer->getAutoloadGenerator();
@@ -116,18 +116,18 @@  discard block
 block discarded – undo
116 116
             }
117 117
             $autoload = $package->getAutoload();
118 118
             // Skip misconfigured packages
119
-            if (!isset($autoload[$type]) || !\is_array($autoload[$type])) {
119
+            if ( ! isset($autoload[$type]) || ! \is_array($autoload[$type])) {
120 120
                 continue;
121 121
             }
122 122
             if (null !== $package->getTargetDir()) {
123
-                $installPath = \substr($installPath, 0, -\strlen('/' . $package->getTargetDir()));
123
+                $installPath = \substr($installPath, 0, -\strlen('/'.$package->getTargetDir()));
124 124
             }
125 125
             foreach ($autoload[$type] as $key => $path) {
126
-                if ($package->getTargetDir() && !\is_readable($installPath . '/' . $path)) {
126
+                if ($package->getTargetDir() && ! \is_readable($installPath.'/'.$path)) {
127 127
                     // add target-dir from file paths that don't have it
128
-                    $path = $package->getTargetDir() . '/' . $path;
128
+                    $path = $package->getTargetDir().'/'.$path;
129 129
                 }
130
-                $resolvedPath = $installPath . '/' . $path;
130
+                $resolvedPath = $installPath.'/'.$path;
131 131
                 $resolvedPath = \strtr($resolvedPath, '\\', '/');
132 132
                 if (isset($excludedFiles[$resolvedPath])) {
133 133
                     unset($autoload[$type][$key]);
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
         $vendorPath = $filesystem->normalizePath(\realpath(\realpath($config->get('vendor-dir'))));
168 168
         foreach ($paths as &$path) {
169 169
             $path = \preg_replace('{/+}', '/', \trim(\strtr($path, '\\', '/'), '/'));
170
-            $path = $vendorPath . '/' . $path;
170
+            $path = $vendorPath.'/'.$path;
171 171
         }
172 172
         return $paths;
173 173
     }
Please login to merge, or discard this patch.
src/modules/common/third-party/vendor/composer/autoload_classmap.php 1 patch
Spacing   +265 added lines, -265 removed lines patch added patch discarded remove patch
@@ -6,269 +6,269 @@
 block discarded – undo
6 6
 $baseDir = dirname($vendorDir);
7 7
 
8 8
 return array(
9
-    'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
10
-    'Wordlift\\Modules\\Common\\Attribute' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
11
-    'Wordlift\\Modules\\Common\\JsonException' => $vendorDir . '/symfony/polyfill-php73/Resources/stubs/JsonException.php',
12
-    'Wordlift\\Modules\\Common\\McAskill\\Composer\\ExcludeFilePlugin' => $vendorDir . '/mcaskill/composer-exclude-files/src/ExcludeFilePlugin.php',
13
-    'Wordlift\\Modules\\Common\\PhpToken' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
14
-    'Wordlift\\Modules\\Common\\Psr\\Container\\ContainerExceptionInterface' => $vendorDir . '/psr/container/src/ContainerExceptionInterface.php',
15
-    'Wordlift\\Modules\\Common\\Psr\\Container\\ContainerInterface' => $vendorDir . '/psr/container/src/ContainerInterface.php',
16
-    'Wordlift\\Modules\\Common\\Psr\\Container\\NotFoundExceptionInterface' => $vendorDir . '/psr/container/src/NotFoundExceptionInterface.php',
17
-    'Wordlift\\Modules\\Common\\Stringable' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Stringable.php',
18
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ConfigCache' => $vendorDir . '/symfony/config/ConfigCache.php',
19
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ConfigCacheFactory' => $vendorDir . '/symfony/config/ConfigCacheFactory.php',
20
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ConfigCacheFactoryInterface' => $vendorDir . '/symfony/config/ConfigCacheFactoryInterface.php',
21
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ConfigCacheInterface' => $vendorDir . '/symfony/config/ConfigCacheInterface.php',
22
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\ArrayNode' => $vendorDir . '/symfony/config/Definition/ArrayNode.php',
23
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\BaseNode' => $vendorDir . '/symfony/config/Definition/BaseNode.php',
24
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\BooleanNode' => $vendorDir . '/symfony/config/Definition/BooleanNode.php',
25
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\ArrayNodeDefinition' => $vendorDir . '/symfony/config/Definition/Builder/ArrayNodeDefinition.php',
26
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\BooleanNodeDefinition' => $vendorDir . '/symfony/config/Definition/Builder/BooleanNodeDefinition.php',
27
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\EnumNodeDefinition' => $vendorDir . '/symfony/config/Definition/Builder/EnumNodeDefinition.php',
28
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\ExprBuilder' => $vendorDir . '/symfony/config/Definition/Builder/ExprBuilder.php',
29
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\FloatNodeDefinition' => $vendorDir . '/symfony/config/Definition/Builder/FloatNodeDefinition.php',
30
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\IntegerNodeDefinition' => $vendorDir . '/symfony/config/Definition/Builder/IntegerNodeDefinition.php',
31
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\MergeBuilder' => $vendorDir . '/symfony/config/Definition/Builder/MergeBuilder.php',
32
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\NodeBuilder' => $vendorDir . '/symfony/config/Definition/Builder/NodeBuilder.php',
33
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\NodeDefinition' => $vendorDir . '/symfony/config/Definition/Builder/NodeDefinition.php',
34
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\NodeParentInterface' => $vendorDir . '/symfony/config/Definition/Builder/NodeParentInterface.php',
35
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\NormalizationBuilder' => $vendorDir . '/symfony/config/Definition/Builder/NormalizationBuilder.php',
36
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\NumericNodeDefinition' => $vendorDir . '/symfony/config/Definition/Builder/NumericNodeDefinition.php',
37
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\ParentNodeDefinitionInterface' => $vendorDir . '/symfony/config/Definition/Builder/ParentNodeDefinitionInterface.php',
38
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\ScalarNodeDefinition' => $vendorDir . '/symfony/config/Definition/Builder/ScalarNodeDefinition.php',
39
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\TreeBuilder' => $vendorDir . '/symfony/config/Definition/Builder/TreeBuilder.php',
40
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\ValidationBuilder' => $vendorDir . '/symfony/config/Definition/Builder/ValidationBuilder.php',
41
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\VariableNodeDefinition' => $vendorDir . '/symfony/config/Definition/Builder/VariableNodeDefinition.php',
42
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\ConfigurationInterface' => $vendorDir . '/symfony/config/Definition/ConfigurationInterface.php',
43
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Dumper\\XmlReferenceDumper' => $vendorDir . '/symfony/config/Definition/Dumper/XmlReferenceDumper.php',
44
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Dumper\\YamlReferenceDumper' => $vendorDir . '/symfony/config/Definition/Dumper/YamlReferenceDumper.php',
45
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\EnumNode' => $vendorDir . '/symfony/config/Definition/EnumNode.php',
46
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\DuplicateKeyException' => $vendorDir . '/symfony/config/Definition/Exception/DuplicateKeyException.php',
47
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\Exception' => $vendorDir . '/symfony/config/Definition/Exception/Exception.php',
48
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\ForbiddenOverwriteException' => $vendorDir . '/symfony/config/Definition/Exception/ForbiddenOverwriteException.php',
49
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\InvalidConfigurationException' => $vendorDir . '/symfony/config/Definition/Exception/InvalidConfigurationException.php',
50
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\InvalidDefinitionException' => $vendorDir . '/symfony/config/Definition/Exception/InvalidDefinitionException.php',
51
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\InvalidTypeException' => $vendorDir . '/symfony/config/Definition/Exception/InvalidTypeException.php',
52
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\UnsetKeyException' => $vendorDir . '/symfony/config/Definition/Exception/UnsetKeyException.php',
53
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\FloatNode' => $vendorDir . '/symfony/config/Definition/FloatNode.php',
54
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\IntegerNode' => $vendorDir . '/symfony/config/Definition/IntegerNode.php',
55
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\NodeInterface' => $vendorDir . '/symfony/config/Definition/NodeInterface.php',
56
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\NumericNode' => $vendorDir . '/symfony/config/Definition/NumericNode.php',
57
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Processor' => $vendorDir . '/symfony/config/Definition/Processor.php',
58
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\PrototypeNodeInterface' => $vendorDir . '/symfony/config/Definition/PrototypeNodeInterface.php',
59
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\PrototypedArrayNode' => $vendorDir . '/symfony/config/Definition/PrototypedArrayNode.php',
60
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\ScalarNode' => $vendorDir . '/symfony/config/Definition/ScalarNode.php',
61
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\VariableNode' => $vendorDir . '/symfony/config/Definition/VariableNode.php',
62
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\DependencyInjection\\ConfigCachePass' => $vendorDir . '/symfony/config/DependencyInjection/ConfigCachePass.php',
63
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Exception\\FileLoaderImportCircularReferenceException' => $vendorDir . '/symfony/config/Exception/FileLoaderImportCircularReferenceException.php',
64
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Exception\\FileLoaderLoadException' => $vendorDir . '/symfony/config/Exception/FileLoaderLoadException.php',
65
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Exception\\FileLocatorFileNotFoundException' => $vendorDir . '/symfony/config/Exception/FileLocatorFileNotFoundException.php',
66
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\FileLocator' => $vendorDir . '/symfony/config/FileLocator.php',
67
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\FileLocatorInterface' => $vendorDir . '/symfony/config/FileLocatorInterface.php',
68
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\DelegatingLoader' => $vendorDir . '/symfony/config/Loader/DelegatingLoader.php',
69
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\FileLoader' => $vendorDir . '/symfony/config/Loader/FileLoader.php',
70
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\GlobFileLoader' => $vendorDir . '/symfony/config/Loader/GlobFileLoader.php',
71
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\Loader' => $vendorDir . '/symfony/config/Loader/Loader.php',
72
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\LoaderInterface' => $vendorDir . '/symfony/config/Loader/LoaderInterface.php',
73
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\LoaderResolver' => $vendorDir . '/symfony/config/Loader/LoaderResolver.php',
74
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\LoaderResolverInterface' => $vendorDir . '/symfony/config/Loader/LoaderResolverInterface.php',
75
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ResourceCheckerConfigCache' => $vendorDir . '/symfony/config/ResourceCheckerConfigCache.php',
76
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ResourceCheckerConfigCacheFactory' => $vendorDir . '/symfony/config/ResourceCheckerConfigCacheFactory.php',
77
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ResourceCheckerInterface' => $vendorDir . '/symfony/config/ResourceCheckerInterface.php',
78
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\ClassExistenceResource' => $vendorDir . '/symfony/config/Resource/ClassExistenceResource.php',
79
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\ComposerResource' => $vendorDir . '/symfony/config/Resource/ComposerResource.php',
80
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\DirectoryResource' => $vendorDir . '/symfony/config/Resource/DirectoryResource.php',
81
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\FileExistenceResource' => $vendorDir . '/symfony/config/Resource/FileExistenceResource.php',
82
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\FileResource' => $vendorDir . '/symfony/config/Resource/FileResource.php',
83
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\GlobResource' => $vendorDir . '/symfony/config/Resource/GlobResource.php',
84
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\ReflectionClassResource' => $vendorDir . '/symfony/config/Resource/ReflectionClassResource.php',
85
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\ReflectionMethodHhvmWrapper' => $vendorDir . '/symfony/config/Resource/ReflectionClassResource.php',
86
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\ReflectionParameterHhvmWrapper' => $vendorDir . '/symfony/config/Resource/ReflectionClassResource.php',
87
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\ResourceInterface' => $vendorDir . '/symfony/config/Resource/ResourceInterface.php',
88
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\SelfCheckingResourceChecker' => $vendorDir . '/symfony/config/Resource/SelfCheckingResourceChecker.php',
89
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\SelfCheckingResourceInterface' => $vendorDir . '/symfony/config/Resource/SelfCheckingResourceInterface.php',
90
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Util\\Exception\\InvalidXmlException' => $vendorDir . '/symfony/config/Util/Exception/InvalidXmlException.php',
91
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Util\\Exception\\XmlParsingException' => $vendorDir . '/symfony/config/Util/Exception/XmlParsingException.php',
92
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Util\\XmlUtils' => $vendorDir . '/symfony/config/Util/XmlUtils.php',
93
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Alias' => $vendorDir . '/symfony/dependency-injection/Alias.php',
94
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Argument\\ArgumentInterface' => $vendorDir . '/symfony/dependency-injection/Argument/ArgumentInterface.php',
95
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Argument\\BoundArgument' => $vendorDir . '/symfony/dependency-injection/Argument/BoundArgument.php',
96
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Argument\\IteratorArgument' => $vendorDir . '/symfony/dependency-injection/Argument/IteratorArgument.php',
97
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Argument\\RewindableGenerator' => $vendorDir . '/symfony/dependency-injection/Argument/RewindableGenerator.php',
98
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Argument\\ServiceClosureArgument' => $vendorDir . '/symfony/dependency-injection/Argument/ServiceClosureArgument.php',
99
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Argument\\TaggedIteratorArgument' => $vendorDir . '/symfony/dependency-injection/Argument/TaggedIteratorArgument.php',
100
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ChildDefinition' => $vendorDir . '/symfony/dependency-injection/ChildDefinition.php',
101
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\AbstractRecursivePass' => $vendorDir . '/symfony/dependency-injection/Compiler/AbstractRecursivePass.php',
102
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\AnalyzeServiceReferencesPass' => $vendorDir . '/symfony/dependency-injection/Compiler/AnalyzeServiceReferencesPass.php',
103
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\AutoAliasServicePass' => $vendorDir . '/symfony/dependency-injection/Compiler/AutoAliasServicePass.php',
104
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\AutowireExceptionPass' => $vendorDir . '/symfony/dependency-injection/Compiler/AutowireExceptionPass.php',
105
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\AutowirePass' => $vendorDir . '/symfony/dependency-injection/Compiler/AutowirePass.php',
106
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\AutowireRequiredMethodsPass' => $vendorDir . '/symfony/dependency-injection/Compiler/AutowireRequiredMethodsPass.php',
107
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\CheckArgumentsValidityPass' => $vendorDir . '/symfony/dependency-injection/Compiler/CheckArgumentsValidityPass.php',
108
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\CheckCircularReferencesPass' => $vendorDir . '/symfony/dependency-injection/Compiler/CheckCircularReferencesPass.php',
109
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\CheckDefinitionValidityPass' => $vendorDir . '/symfony/dependency-injection/Compiler/CheckDefinitionValidityPass.php',
110
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\CheckExceptionOnInvalidReferenceBehaviorPass' => $vendorDir . '/symfony/dependency-injection/Compiler/CheckExceptionOnInvalidReferenceBehaviorPass.php',
111
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\CheckReferenceValidityPass' => $vendorDir . '/symfony/dependency-injection/Compiler/CheckReferenceValidityPass.php',
112
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\Compiler' => $vendorDir . '/symfony/dependency-injection/Compiler/Compiler.php',
113
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\CompilerPassInterface' => $vendorDir . '/symfony/dependency-injection/Compiler/CompilerPassInterface.php',
114
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\DecoratorServicePass' => $vendorDir . '/symfony/dependency-injection/Compiler/DecoratorServicePass.php',
115
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\DefinitionErrorExceptionPass' => $vendorDir . '/symfony/dependency-injection/Compiler/DefinitionErrorExceptionPass.php',
116
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ExtensionCompilerPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ExtensionCompilerPass.php',
117
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\FactoryReturnTypePass' => $vendorDir . '/symfony/dependency-injection/Compiler/FactoryReturnTypePass.php',
118
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\InlineServiceDefinitionsPass' => $vendorDir . '/symfony/dependency-injection/Compiler/InlineServiceDefinitionsPass.php',
119
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\LoggingFormatter' => $vendorDir . '/symfony/dependency-injection/Compiler/LoggingFormatter.php',
120
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\MergeExtensionConfigurationContainerBuilder' => $vendorDir . '/symfony/dependency-injection/Compiler/MergeExtensionConfigurationPass.php',
121
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\MergeExtensionConfigurationParameterBag' => $vendorDir . '/symfony/dependency-injection/Compiler/MergeExtensionConfigurationPass.php',
122
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\MergeExtensionConfigurationPass' => $vendorDir . '/symfony/dependency-injection/Compiler/MergeExtensionConfigurationPass.php',
123
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\PassConfig' => $vendorDir . '/symfony/dependency-injection/Compiler/PassConfig.php',
124
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\PriorityTaggedServiceTrait' => $vendorDir . '/symfony/dependency-injection/Compiler/PriorityTaggedServiceTrait.php',
125
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RegisterEnvVarProcessorsPass' => $vendorDir . '/symfony/dependency-injection/Compiler/RegisterEnvVarProcessorsPass.php',
126
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RegisterServiceSubscribersPass' => $vendorDir . '/symfony/dependency-injection/Compiler/RegisterServiceSubscribersPass.php',
127
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RemoveAbstractDefinitionsPass' => $vendorDir . '/symfony/dependency-injection/Compiler/RemoveAbstractDefinitionsPass.php',
128
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RemovePrivateAliasesPass' => $vendorDir . '/symfony/dependency-injection/Compiler/RemovePrivateAliasesPass.php',
129
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RemoveUnusedDefinitionsPass' => $vendorDir . '/symfony/dependency-injection/Compiler/RemoveUnusedDefinitionsPass.php',
130
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RepeatablePassInterface' => $vendorDir . '/symfony/dependency-injection/Compiler/RepeatablePassInterface.php',
131
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RepeatedPass' => $vendorDir . '/symfony/dependency-injection/Compiler/RepeatedPass.php',
132
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ReplaceAliasByActualDefinitionPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ReplaceAliasByActualDefinitionPass.php',
133
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveBindingsPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveBindingsPass.php',
134
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveChildDefinitionsPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveChildDefinitionsPass.php',
135
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveClassPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveClassPass.php',
136
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveDefinitionTemplatesPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveDefinitionTemplatesPass.php',
137
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveEnvPlaceholdersPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveEnvPlaceholdersPass.php',
138
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveFactoryClassPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveFactoryClassPass.php',
139
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveHotPathPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveHotPathPass.php',
140
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveInstanceofConditionalsPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveInstanceofConditionalsPass.php',
141
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveInvalidReferencesPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveInvalidReferencesPass.php',
142
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveNamedArgumentsPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveNamedArgumentsPass.php',
143
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveParameterPlaceHoldersPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveParameterPlaceHoldersPass.php',
144
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolvePrivatesPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolvePrivatesPass.php',
145
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveReferencesToAliasesPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveReferencesToAliasesPass.php',
146
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveServiceSubscribersPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveServiceSubscribersPass.php',
147
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveTaggedIteratorArgumentPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveTaggedIteratorArgumentPass.php',
148
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ServiceLocatorTagPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ServiceLocatorTagPass.php',
149
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ServiceReferenceGraph' => $vendorDir . '/symfony/dependency-injection/Compiler/ServiceReferenceGraph.php',
150
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ServiceReferenceGraphEdge' => $vendorDir . '/symfony/dependency-injection/Compiler/ServiceReferenceGraphEdge.php',
151
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ServiceReferenceGraphNode' => $vendorDir . '/symfony/dependency-injection/Compiler/ServiceReferenceGraphNode.php',
152
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Config\\AutowireServiceResource' => $vendorDir . '/symfony/dependency-injection/Config/AutowireServiceResource.php',
153
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Config\\ContainerParametersResource' => $vendorDir . '/symfony/dependency-injection/Config/ContainerParametersResource.php',
154
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Config\\ContainerParametersResourceChecker' => $vendorDir . '/symfony/dependency-injection/Config/ContainerParametersResourceChecker.php',
155
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Container' => $vendorDir . '/symfony/dependency-injection/Container.php',
156
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ContainerAwareInterface' => $vendorDir . '/symfony/dependency-injection/ContainerAwareInterface.php',
157
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ContainerAwareTrait' => $vendorDir . '/symfony/dependency-injection/ContainerAwareTrait.php',
158
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ContainerBuilder' => $vendorDir . '/symfony/dependency-injection/ContainerBuilder.php',
159
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ContainerInterface' => $vendorDir . '/symfony/dependency-injection/ContainerInterface.php',
160
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Definition' => $vendorDir . '/symfony/dependency-injection/Definition.php',
161
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\DefinitionDecorator' => $vendorDir . '/symfony/dependency-injection/DefinitionDecorator.php',
162
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Dumper\\Dumper' => $vendorDir . '/symfony/dependency-injection/Dumper/Dumper.php',
163
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Dumper\\DumperInterface' => $vendorDir . '/symfony/dependency-injection/Dumper/DumperInterface.php',
164
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Dumper\\GraphvizDumper' => $vendorDir . '/symfony/dependency-injection/Dumper/GraphvizDumper.php',
165
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Dumper\\PhpDumper' => $vendorDir . '/symfony/dependency-injection/Dumper/PhpDumper.php',
166
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Dumper\\XmlDumper' => $vendorDir . '/symfony/dependency-injection/Dumper/XmlDumper.php',
167
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Dumper\\YamlDumper' => $vendorDir . '/symfony/dependency-injection/Dumper/YamlDumper.php',
168
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\EnvVarProcessor' => $vendorDir . '/symfony/dependency-injection/EnvVarProcessor.php',
169
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\EnvVarProcessorInterface' => $vendorDir . '/symfony/dependency-injection/EnvVarProcessorInterface.php',
170
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\AutowiringFailedException' => $vendorDir . '/symfony/dependency-injection/Exception/AutowiringFailedException.php',
171
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\BadMethodCallException' => $vendorDir . '/symfony/dependency-injection/Exception/BadMethodCallException.php',
172
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\EnvNotFoundException' => $vendorDir . '/symfony/dependency-injection/Exception/EnvNotFoundException.php',
173
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\EnvParameterException' => $vendorDir . '/symfony/dependency-injection/Exception/EnvParameterException.php',
174
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/dependency-injection/Exception/ExceptionInterface.php',
175
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/dependency-injection/Exception/InvalidArgumentException.php',
176
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\LogicException' => $vendorDir . '/symfony/dependency-injection/Exception/LogicException.php',
177
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\OutOfBoundsException' => $vendorDir . '/symfony/dependency-injection/Exception/OutOfBoundsException.php',
178
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\ParameterCircularReferenceException' => $vendorDir . '/symfony/dependency-injection/Exception/ParameterCircularReferenceException.php',
179
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\ParameterNotFoundException' => $vendorDir . '/symfony/dependency-injection/Exception/ParameterNotFoundException.php',
180
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\RuntimeException' => $vendorDir . '/symfony/dependency-injection/Exception/RuntimeException.php',
181
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\ServiceCircularReferenceException' => $vendorDir . '/symfony/dependency-injection/Exception/ServiceCircularReferenceException.php',
182
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\ServiceNotFoundException' => $vendorDir . '/symfony/dependency-injection/Exception/ServiceNotFoundException.php',
183
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ExpressionLanguage' => $vendorDir . '/symfony/dependency-injection/ExpressionLanguage.php',
184
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ExpressionLanguageProvider' => $vendorDir . '/symfony/dependency-injection/ExpressionLanguageProvider.php',
185
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Extension\\ConfigurationExtensionInterface' => $vendorDir . '/symfony/dependency-injection/Extension/ConfigurationExtensionInterface.php',
186
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Extension\\Extension' => $vendorDir . '/symfony/dependency-injection/Extension/Extension.php',
187
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Extension\\ExtensionInterface' => $vendorDir . '/symfony/dependency-injection/Extension/ExtensionInterface.php',
188
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Extension\\PrependExtensionInterface' => $vendorDir . '/symfony/dependency-injection/Extension/PrependExtensionInterface.php',
189
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\LazyProxy\\Instantiator\\InstantiatorInterface' => $vendorDir . '/symfony/dependency-injection/LazyProxy/Instantiator/InstantiatorInterface.php',
190
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\LazyProxy\\Instantiator\\RealServiceInstantiator' => $vendorDir . '/symfony/dependency-injection/LazyProxy/Instantiator/RealServiceInstantiator.php',
191
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\LazyProxy\\PhpDumper\\DumperInterface' => $vendorDir . '/symfony/dependency-injection/LazyProxy/PhpDumper/DumperInterface.php',
192
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\LazyProxy\\PhpDumper\\NullDumper' => $vendorDir . '/symfony/dependency-injection/LazyProxy/PhpDumper/NullDumper.php',
193
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\LazyProxy\\ProxyHelper' => $vendorDir . '/symfony/dependency-injection/LazyProxy/ProxyHelper.php',
194
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\ClosureLoader' => $vendorDir . '/symfony/dependency-injection/Loader/ClosureLoader.php',
195
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\AbstractConfigurator' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/AbstractConfigurator.php',
196
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\AbstractServiceConfigurator' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/AbstractServiceConfigurator.php',
197
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\AliasConfigurator' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/AliasConfigurator.php',
198
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\ContainerConfigurator' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/ContainerConfigurator.php',
199
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\DefaultsConfigurator' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/DefaultsConfigurator.php',
200
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\InlineServiceConfigurator' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/InlineServiceConfigurator.php',
201
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\InstanceofConfigurator' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/InstanceofConfigurator.php',
202
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\ParametersConfigurator' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/ParametersConfigurator.php',
203
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\PrototypeConfigurator' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/PrototypeConfigurator.php',
204
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\ReferenceConfigurator' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/ReferenceConfigurator.php',
205
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\ServiceConfigurator' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/ServiceConfigurator.php',
206
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\ServicesConfigurator' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/ServicesConfigurator.php',
207
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\AbstractTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/AbstractTrait.php',
208
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\ArgumentTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/ArgumentTrait.php',
209
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\AutoconfigureTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/AutoconfigureTrait.php',
210
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\AutowireTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/AutowireTrait.php',
211
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\BindTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/BindTrait.php',
212
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\CallTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/CallTrait.php',
213
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\ClassTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/ClassTrait.php',
214
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\ConfiguratorTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/ConfiguratorTrait.php',
215
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\DecorateTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/DecorateTrait.php',
216
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\DeprecateTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/DeprecateTrait.php',
217
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\FactoryTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/FactoryTrait.php',
218
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\FileTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/FileTrait.php',
219
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\LazyTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/LazyTrait.php',
220
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\ParentTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/ParentTrait.php',
221
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\PropertyTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/PropertyTrait.php',
222
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\PublicTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/PublicTrait.php',
223
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\ShareTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/ShareTrait.php',
224
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\SyntheticTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/SyntheticTrait.php',
225
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\TagTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/TagTrait.php',
226
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\DirectoryLoader' => $vendorDir . '/symfony/dependency-injection/Loader/DirectoryLoader.php',
227
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\FileLoader' => $vendorDir . '/symfony/dependency-injection/Loader/FileLoader.php',
228
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\GlobFileLoader' => $vendorDir . '/symfony/dependency-injection/Loader/GlobFileLoader.php',
229
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\IniFileLoader' => $vendorDir . '/symfony/dependency-injection/Loader/IniFileLoader.php',
230
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\PhpFileLoader' => $vendorDir . '/symfony/dependency-injection/Loader/PhpFileLoader.php',
231
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\ProtectedPhpFileLoader' => $vendorDir . '/symfony/dependency-injection/Loader/PhpFileLoader.php',
232
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\XmlFileLoader' => $vendorDir . '/symfony/dependency-injection/Loader/XmlFileLoader.php',
233
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader' => $vendorDir . '/symfony/dependency-injection/Loader/YamlFileLoader.php',
234
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Parameter' => $vendorDir . '/symfony/dependency-injection/Parameter.php',
235
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ParameterBag\\EnvPlaceholderParameterBag' => $vendorDir . '/symfony/dependency-injection/ParameterBag/EnvPlaceholderParameterBag.php',
236
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ParameterBag\\FrozenParameterBag' => $vendorDir . '/symfony/dependency-injection/ParameterBag/FrozenParameterBag.php',
237
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ParameterBag\\ParameterBag' => $vendorDir . '/symfony/dependency-injection/ParameterBag/ParameterBag.php',
238
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ParameterBag\\ParameterBagInterface' => $vendorDir . '/symfony/dependency-injection/ParameterBag/ParameterBagInterface.php',
239
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Reference' => $vendorDir . '/symfony/dependency-injection/Reference.php',
240
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ResettableContainerInterface' => $vendorDir . '/symfony/dependency-injection/ResettableContainerInterface.php',
241
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ServiceLocator' => $vendorDir . '/symfony/dependency-injection/ServiceLocator.php',
242
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ServiceSubscriberInterface' => $vendorDir . '/symfony/dependency-injection/ServiceSubscriberInterface.php',
243
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\TaggedContainerInterface' => $vendorDir . '/symfony/dependency-injection/TaggedContainerInterface.php',
244
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\TypedReference' => $vendorDir . '/symfony/dependency-injection/TypedReference.php',
245
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Variable' => $vendorDir . '/symfony/dependency-injection/Variable.php',
246
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Filesystem\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/filesystem/Exception/ExceptionInterface.php',
247
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Filesystem\\Exception\\FileNotFoundException' => $vendorDir . '/symfony/filesystem/Exception/FileNotFoundException.php',
248
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Filesystem\\Exception\\IOException' => $vendorDir . '/symfony/filesystem/Exception/IOException.php',
249
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Filesystem\\Exception\\IOExceptionInterface' => $vendorDir . '/symfony/filesystem/Exception/IOExceptionInterface.php',
250
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Filesystem\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/filesystem/Exception/InvalidArgumentException.php',
251
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Filesystem\\Filesystem' => $vendorDir . '/symfony/filesystem/Filesystem.php',
252
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Command\\LintCommand' => $vendorDir . '/symfony/yaml/Command/LintCommand.php',
253
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Dumper' => $vendorDir . '/symfony/yaml/Dumper.php',
254
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Escaper' => $vendorDir . '/symfony/yaml/Escaper.php',
255
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Exception\\DumpException' => $vendorDir . '/symfony/yaml/Exception/DumpException.php',
256
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/yaml/Exception/ExceptionInterface.php',
257
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Exception\\ParseException' => $vendorDir . '/symfony/yaml/Exception/ParseException.php',
258
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Exception\\RuntimeException' => $vendorDir . '/symfony/yaml/Exception/RuntimeException.php',
259
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Inline' => $vendorDir . '/symfony/yaml/Inline.php',
260
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Parser' => $vendorDir . '/symfony/yaml/Parser.php',
261
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Tag\\TaggedValue' => $vendorDir . '/symfony/yaml/Tag/TaggedValue.php',
262
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Unescaper' => $vendorDir . '/symfony/yaml/Unescaper.php',
263
-    'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Yaml' => $vendorDir . '/symfony/yaml/Yaml.php',
264
-    'Wordlift\\Modules\\Common\\Symfony\\Polyfill\\Ctype\\Ctype' => $vendorDir . '/symfony/polyfill-ctype/Ctype.php',
265
-    'Wordlift\\Modules\\Common\\Symfony\\Polyfill\\Mbstring\\Mbstring' => $vendorDir . '/symfony/polyfill-mbstring/Mbstring.php',
266
-    'Wordlift\\Modules\\Common\\Symfony\\Polyfill\\Php73\\Php73' => $vendorDir . '/symfony/polyfill-php73/Php73.php',
267
-    'Wordlift\\Modules\\Common\\Symfony\\Polyfill\\Php80\\Php80' => $vendorDir . '/symfony/polyfill-php80/Php80.php',
268
-    'Wordlift\\Modules\\Common\\Symfony\\Polyfill\\Php80\\PhpToken' => $vendorDir . '/symfony/polyfill-php80/PhpToken.php',
269
-    'Wordlift\\Modules\\Common\\UnhandledMatchError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',
270
-    'Wordlift\\Modules\\Common\\ValueError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/ValueError.php',
271
-    'Wordlift\\Modules\\Common\\cweagans\\Composer\\PatchEvent' => $vendorDir . '/cweagans/composer-patches/src/PatchEvent.php',
272
-    'Wordlift\\Modules\\Common\\cweagans\\Composer\\PatchEvents' => $vendorDir . '/cweagans/composer-patches/src/PatchEvents.php',
273
-    'Wordlift\\Modules\\Common\\cweagans\\Composer\\Patches' => $vendorDir . '/cweagans/composer-patches/src/Patches.php',
9
+    'Composer\\InstalledVersions' => $vendorDir.'/composer/InstalledVersions.php',
10
+    'Wordlift\\Modules\\Common\\Attribute' => $vendorDir.'/symfony/polyfill-php80/Resources/stubs/Attribute.php',
11
+    'Wordlift\\Modules\\Common\\JsonException' => $vendorDir.'/symfony/polyfill-php73/Resources/stubs/JsonException.php',
12
+    'Wordlift\\Modules\\Common\\McAskill\\Composer\\ExcludeFilePlugin' => $vendorDir.'/mcaskill/composer-exclude-files/src/ExcludeFilePlugin.php',
13
+    'Wordlift\\Modules\\Common\\PhpToken' => $vendorDir.'/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
14
+    'Wordlift\\Modules\\Common\\Psr\\Container\\ContainerExceptionInterface' => $vendorDir.'/psr/container/src/ContainerExceptionInterface.php',
15
+    'Wordlift\\Modules\\Common\\Psr\\Container\\ContainerInterface' => $vendorDir.'/psr/container/src/ContainerInterface.php',
16
+    'Wordlift\\Modules\\Common\\Psr\\Container\\NotFoundExceptionInterface' => $vendorDir.'/psr/container/src/NotFoundExceptionInterface.php',
17
+    'Wordlift\\Modules\\Common\\Stringable' => $vendorDir.'/symfony/polyfill-php80/Resources/stubs/Stringable.php',
18
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ConfigCache' => $vendorDir.'/symfony/config/ConfigCache.php',
19
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ConfigCacheFactory' => $vendorDir.'/symfony/config/ConfigCacheFactory.php',
20
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ConfigCacheFactoryInterface' => $vendorDir.'/symfony/config/ConfigCacheFactoryInterface.php',
21
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ConfigCacheInterface' => $vendorDir.'/symfony/config/ConfigCacheInterface.php',
22
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\ArrayNode' => $vendorDir.'/symfony/config/Definition/ArrayNode.php',
23
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\BaseNode' => $vendorDir.'/symfony/config/Definition/BaseNode.php',
24
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\BooleanNode' => $vendorDir.'/symfony/config/Definition/BooleanNode.php',
25
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\ArrayNodeDefinition' => $vendorDir.'/symfony/config/Definition/Builder/ArrayNodeDefinition.php',
26
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\BooleanNodeDefinition' => $vendorDir.'/symfony/config/Definition/Builder/BooleanNodeDefinition.php',
27
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\EnumNodeDefinition' => $vendorDir.'/symfony/config/Definition/Builder/EnumNodeDefinition.php',
28
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\ExprBuilder' => $vendorDir.'/symfony/config/Definition/Builder/ExprBuilder.php',
29
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\FloatNodeDefinition' => $vendorDir.'/symfony/config/Definition/Builder/FloatNodeDefinition.php',
30
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\IntegerNodeDefinition' => $vendorDir.'/symfony/config/Definition/Builder/IntegerNodeDefinition.php',
31
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\MergeBuilder' => $vendorDir.'/symfony/config/Definition/Builder/MergeBuilder.php',
32
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\NodeBuilder' => $vendorDir.'/symfony/config/Definition/Builder/NodeBuilder.php',
33
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\NodeDefinition' => $vendorDir.'/symfony/config/Definition/Builder/NodeDefinition.php',
34
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\NodeParentInterface' => $vendorDir.'/symfony/config/Definition/Builder/NodeParentInterface.php',
35
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\NormalizationBuilder' => $vendorDir.'/symfony/config/Definition/Builder/NormalizationBuilder.php',
36
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\NumericNodeDefinition' => $vendorDir.'/symfony/config/Definition/Builder/NumericNodeDefinition.php',
37
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\ParentNodeDefinitionInterface' => $vendorDir.'/symfony/config/Definition/Builder/ParentNodeDefinitionInterface.php',
38
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\ScalarNodeDefinition' => $vendorDir.'/symfony/config/Definition/Builder/ScalarNodeDefinition.php',
39
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\TreeBuilder' => $vendorDir.'/symfony/config/Definition/Builder/TreeBuilder.php',
40
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\ValidationBuilder' => $vendorDir.'/symfony/config/Definition/Builder/ValidationBuilder.php',
41
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\VariableNodeDefinition' => $vendorDir.'/symfony/config/Definition/Builder/VariableNodeDefinition.php',
42
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\ConfigurationInterface' => $vendorDir.'/symfony/config/Definition/ConfigurationInterface.php',
43
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Dumper\\XmlReferenceDumper' => $vendorDir.'/symfony/config/Definition/Dumper/XmlReferenceDumper.php',
44
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Dumper\\YamlReferenceDumper' => $vendorDir.'/symfony/config/Definition/Dumper/YamlReferenceDumper.php',
45
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\EnumNode' => $vendorDir.'/symfony/config/Definition/EnumNode.php',
46
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\DuplicateKeyException' => $vendorDir.'/symfony/config/Definition/Exception/DuplicateKeyException.php',
47
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\Exception' => $vendorDir.'/symfony/config/Definition/Exception/Exception.php',
48
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\ForbiddenOverwriteException' => $vendorDir.'/symfony/config/Definition/Exception/ForbiddenOverwriteException.php',
49
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\InvalidConfigurationException' => $vendorDir.'/symfony/config/Definition/Exception/InvalidConfigurationException.php',
50
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\InvalidDefinitionException' => $vendorDir.'/symfony/config/Definition/Exception/InvalidDefinitionException.php',
51
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\InvalidTypeException' => $vendorDir.'/symfony/config/Definition/Exception/InvalidTypeException.php',
52
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\UnsetKeyException' => $vendorDir.'/symfony/config/Definition/Exception/UnsetKeyException.php',
53
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\FloatNode' => $vendorDir.'/symfony/config/Definition/FloatNode.php',
54
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\IntegerNode' => $vendorDir.'/symfony/config/Definition/IntegerNode.php',
55
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\NodeInterface' => $vendorDir.'/symfony/config/Definition/NodeInterface.php',
56
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\NumericNode' => $vendorDir.'/symfony/config/Definition/NumericNode.php',
57
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Processor' => $vendorDir.'/symfony/config/Definition/Processor.php',
58
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\PrototypeNodeInterface' => $vendorDir.'/symfony/config/Definition/PrototypeNodeInterface.php',
59
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\PrototypedArrayNode' => $vendorDir.'/symfony/config/Definition/PrototypedArrayNode.php',
60
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\ScalarNode' => $vendorDir.'/symfony/config/Definition/ScalarNode.php',
61
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\VariableNode' => $vendorDir.'/symfony/config/Definition/VariableNode.php',
62
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\DependencyInjection\\ConfigCachePass' => $vendorDir.'/symfony/config/DependencyInjection/ConfigCachePass.php',
63
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Exception\\FileLoaderImportCircularReferenceException' => $vendorDir.'/symfony/config/Exception/FileLoaderImportCircularReferenceException.php',
64
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Exception\\FileLoaderLoadException' => $vendorDir.'/symfony/config/Exception/FileLoaderLoadException.php',
65
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Exception\\FileLocatorFileNotFoundException' => $vendorDir.'/symfony/config/Exception/FileLocatorFileNotFoundException.php',
66
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\FileLocator' => $vendorDir.'/symfony/config/FileLocator.php',
67
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\FileLocatorInterface' => $vendorDir.'/symfony/config/FileLocatorInterface.php',
68
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\DelegatingLoader' => $vendorDir.'/symfony/config/Loader/DelegatingLoader.php',
69
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\FileLoader' => $vendorDir.'/symfony/config/Loader/FileLoader.php',
70
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\GlobFileLoader' => $vendorDir.'/symfony/config/Loader/GlobFileLoader.php',
71
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\Loader' => $vendorDir.'/symfony/config/Loader/Loader.php',
72
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\LoaderInterface' => $vendorDir.'/symfony/config/Loader/LoaderInterface.php',
73
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\LoaderResolver' => $vendorDir.'/symfony/config/Loader/LoaderResolver.php',
74
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\LoaderResolverInterface' => $vendorDir.'/symfony/config/Loader/LoaderResolverInterface.php',
75
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ResourceCheckerConfigCache' => $vendorDir.'/symfony/config/ResourceCheckerConfigCache.php',
76
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ResourceCheckerConfigCacheFactory' => $vendorDir.'/symfony/config/ResourceCheckerConfigCacheFactory.php',
77
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ResourceCheckerInterface' => $vendorDir.'/symfony/config/ResourceCheckerInterface.php',
78
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\ClassExistenceResource' => $vendorDir.'/symfony/config/Resource/ClassExistenceResource.php',
79
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\ComposerResource' => $vendorDir.'/symfony/config/Resource/ComposerResource.php',
80
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\DirectoryResource' => $vendorDir.'/symfony/config/Resource/DirectoryResource.php',
81
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\FileExistenceResource' => $vendorDir.'/symfony/config/Resource/FileExistenceResource.php',
82
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\FileResource' => $vendorDir.'/symfony/config/Resource/FileResource.php',
83
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\GlobResource' => $vendorDir.'/symfony/config/Resource/GlobResource.php',
84
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\ReflectionClassResource' => $vendorDir.'/symfony/config/Resource/ReflectionClassResource.php',
85
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\ReflectionMethodHhvmWrapper' => $vendorDir.'/symfony/config/Resource/ReflectionClassResource.php',
86
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\ReflectionParameterHhvmWrapper' => $vendorDir.'/symfony/config/Resource/ReflectionClassResource.php',
87
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\ResourceInterface' => $vendorDir.'/symfony/config/Resource/ResourceInterface.php',
88
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\SelfCheckingResourceChecker' => $vendorDir.'/symfony/config/Resource/SelfCheckingResourceChecker.php',
89
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\SelfCheckingResourceInterface' => $vendorDir.'/symfony/config/Resource/SelfCheckingResourceInterface.php',
90
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Util\\Exception\\InvalidXmlException' => $vendorDir.'/symfony/config/Util/Exception/InvalidXmlException.php',
91
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Util\\Exception\\XmlParsingException' => $vendorDir.'/symfony/config/Util/Exception/XmlParsingException.php',
92
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Util\\XmlUtils' => $vendorDir.'/symfony/config/Util/XmlUtils.php',
93
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Alias' => $vendorDir.'/symfony/dependency-injection/Alias.php',
94
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Argument\\ArgumentInterface' => $vendorDir.'/symfony/dependency-injection/Argument/ArgumentInterface.php',
95
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Argument\\BoundArgument' => $vendorDir.'/symfony/dependency-injection/Argument/BoundArgument.php',
96
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Argument\\IteratorArgument' => $vendorDir.'/symfony/dependency-injection/Argument/IteratorArgument.php',
97
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Argument\\RewindableGenerator' => $vendorDir.'/symfony/dependency-injection/Argument/RewindableGenerator.php',
98
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Argument\\ServiceClosureArgument' => $vendorDir.'/symfony/dependency-injection/Argument/ServiceClosureArgument.php',
99
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Argument\\TaggedIteratorArgument' => $vendorDir.'/symfony/dependency-injection/Argument/TaggedIteratorArgument.php',
100
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ChildDefinition' => $vendorDir.'/symfony/dependency-injection/ChildDefinition.php',
101
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\AbstractRecursivePass' => $vendorDir.'/symfony/dependency-injection/Compiler/AbstractRecursivePass.php',
102
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\AnalyzeServiceReferencesPass' => $vendorDir.'/symfony/dependency-injection/Compiler/AnalyzeServiceReferencesPass.php',
103
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\AutoAliasServicePass' => $vendorDir.'/symfony/dependency-injection/Compiler/AutoAliasServicePass.php',
104
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\AutowireExceptionPass' => $vendorDir.'/symfony/dependency-injection/Compiler/AutowireExceptionPass.php',
105
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\AutowirePass' => $vendorDir.'/symfony/dependency-injection/Compiler/AutowirePass.php',
106
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\AutowireRequiredMethodsPass' => $vendorDir.'/symfony/dependency-injection/Compiler/AutowireRequiredMethodsPass.php',
107
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\CheckArgumentsValidityPass' => $vendorDir.'/symfony/dependency-injection/Compiler/CheckArgumentsValidityPass.php',
108
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\CheckCircularReferencesPass' => $vendorDir.'/symfony/dependency-injection/Compiler/CheckCircularReferencesPass.php',
109
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\CheckDefinitionValidityPass' => $vendorDir.'/symfony/dependency-injection/Compiler/CheckDefinitionValidityPass.php',
110
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\CheckExceptionOnInvalidReferenceBehaviorPass' => $vendorDir.'/symfony/dependency-injection/Compiler/CheckExceptionOnInvalidReferenceBehaviorPass.php',
111
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\CheckReferenceValidityPass' => $vendorDir.'/symfony/dependency-injection/Compiler/CheckReferenceValidityPass.php',
112
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\Compiler' => $vendorDir.'/symfony/dependency-injection/Compiler/Compiler.php',
113
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\CompilerPassInterface' => $vendorDir.'/symfony/dependency-injection/Compiler/CompilerPassInterface.php',
114
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\DecoratorServicePass' => $vendorDir.'/symfony/dependency-injection/Compiler/DecoratorServicePass.php',
115
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\DefinitionErrorExceptionPass' => $vendorDir.'/symfony/dependency-injection/Compiler/DefinitionErrorExceptionPass.php',
116
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ExtensionCompilerPass' => $vendorDir.'/symfony/dependency-injection/Compiler/ExtensionCompilerPass.php',
117
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\FactoryReturnTypePass' => $vendorDir.'/symfony/dependency-injection/Compiler/FactoryReturnTypePass.php',
118
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\InlineServiceDefinitionsPass' => $vendorDir.'/symfony/dependency-injection/Compiler/InlineServiceDefinitionsPass.php',
119
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\LoggingFormatter' => $vendorDir.'/symfony/dependency-injection/Compiler/LoggingFormatter.php',
120
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\MergeExtensionConfigurationContainerBuilder' => $vendorDir.'/symfony/dependency-injection/Compiler/MergeExtensionConfigurationPass.php',
121
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\MergeExtensionConfigurationParameterBag' => $vendorDir.'/symfony/dependency-injection/Compiler/MergeExtensionConfigurationPass.php',
122
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\MergeExtensionConfigurationPass' => $vendorDir.'/symfony/dependency-injection/Compiler/MergeExtensionConfigurationPass.php',
123
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\PassConfig' => $vendorDir.'/symfony/dependency-injection/Compiler/PassConfig.php',
124
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\PriorityTaggedServiceTrait' => $vendorDir.'/symfony/dependency-injection/Compiler/PriorityTaggedServiceTrait.php',
125
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RegisterEnvVarProcessorsPass' => $vendorDir.'/symfony/dependency-injection/Compiler/RegisterEnvVarProcessorsPass.php',
126
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RegisterServiceSubscribersPass' => $vendorDir.'/symfony/dependency-injection/Compiler/RegisterServiceSubscribersPass.php',
127
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RemoveAbstractDefinitionsPass' => $vendorDir.'/symfony/dependency-injection/Compiler/RemoveAbstractDefinitionsPass.php',
128
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RemovePrivateAliasesPass' => $vendorDir.'/symfony/dependency-injection/Compiler/RemovePrivateAliasesPass.php',
129
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RemoveUnusedDefinitionsPass' => $vendorDir.'/symfony/dependency-injection/Compiler/RemoveUnusedDefinitionsPass.php',
130
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RepeatablePassInterface' => $vendorDir.'/symfony/dependency-injection/Compiler/RepeatablePassInterface.php',
131
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RepeatedPass' => $vendorDir.'/symfony/dependency-injection/Compiler/RepeatedPass.php',
132
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ReplaceAliasByActualDefinitionPass' => $vendorDir.'/symfony/dependency-injection/Compiler/ReplaceAliasByActualDefinitionPass.php',
133
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveBindingsPass' => $vendorDir.'/symfony/dependency-injection/Compiler/ResolveBindingsPass.php',
134
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveChildDefinitionsPass' => $vendorDir.'/symfony/dependency-injection/Compiler/ResolveChildDefinitionsPass.php',
135
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveClassPass' => $vendorDir.'/symfony/dependency-injection/Compiler/ResolveClassPass.php',
136
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveDefinitionTemplatesPass' => $vendorDir.'/symfony/dependency-injection/Compiler/ResolveDefinitionTemplatesPass.php',
137
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveEnvPlaceholdersPass' => $vendorDir.'/symfony/dependency-injection/Compiler/ResolveEnvPlaceholdersPass.php',
138
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveFactoryClassPass' => $vendorDir.'/symfony/dependency-injection/Compiler/ResolveFactoryClassPass.php',
139
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveHotPathPass' => $vendorDir.'/symfony/dependency-injection/Compiler/ResolveHotPathPass.php',
140
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveInstanceofConditionalsPass' => $vendorDir.'/symfony/dependency-injection/Compiler/ResolveInstanceofConditionalsPass.php',
141
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveInvalidReferencesPass' => $vendorDir.'/symfony/dependency-injection/Compiler/ResolveInvalidReferencesPass.php',
142
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveNamedArgumentsPass' => $vendorDir.'/symfony/dependency-injection/Compiler/ResolveNamedArgumentsPass.php',
143
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveParameterPlaceHoldersPass' => $vendorDir.'/symfony/dependency-injection/Compiler/ResolveParameterPlaceHoldersPass.php',
144
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolvePrivatesPass' => $vendorDir.'/symfony/dependency-injection/Compiler/ResolvePrivatesPass.php',
145
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveReferencesToAliasesPass' => $vendorDir.'/symfony/dependency-injection/Compiler/ResolveReferencesToAliasesPass.php',
146
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveServiceSubscribersPass' => $vendorDir.'/symfony/dependency-injection/Compiler/ResolveServiceSubscribersPass.php',
147
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveTaggedIteratorArgumentPass' => $vendorDir.'/symfony/dependency-injection/Compiler/ResolveTaggedIteratorArgumentPass.php',
148
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ServiceLocatorTagPass' => $vendorDir.'/symfony/dependency-injection/Compiler/ServiceLocatorTagPass.php',
149
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ServiceReferenceGraph' => $vendorDir.'/symfony/dependency-injection/Compiler/ServiceReferenceGraph.php',
150
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ServiceReferenceGraphEdge' => $vendorDir.'/symfony/dependency-injection/Compiler/ServiceReferenceGraphEdge.php',
151
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ServiceReferenceGraphNode' => $vendorDir.'/symfony/dependency-injection/Compiler/ServiceReferenceGraphNode.php',
152
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Config\\AutowireServiceResource' => $vendorDir.'/symfony/dependency-injection/Config/AutowireServiceResource.php',
153
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Config\\ContainerParametersResource' => $vendorDir.'/symfony/dependency-injection/Config/ContainerParametersResource.php',
154
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Config\\ContainerParametersResourceChecker' => $vendorDir.'/symfony/dependency-injection/Config/ContainerParametersResourceChecker.php',
155
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Container' => $vendorDir.'/symfony/dependency-injection/Container.php',
156
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ContainerAwareInterface' => $vendorDir.'/symfony/dependency-injection/ContainerAwareInterface.php',
157
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ContainerAwareTrait' => $vendorDir.'/symfony/dependency-injection/ContainerAwareTrait.php',
158
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ContainerBuilder' => $vendorDir.'/symfony/dependency-injection/ContainerBuilder.php',
159
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ContainerInterface' => $vendorDir.'/symfony/dependency-injection/ContainerInterface.php',
160
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Definition' => $vendorDir.'/symfony/dependency-injection/Definition.php',
161
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\DefinitionDecorator' => $vendorDir.'/symfony/dependency-injection/DefinitionDecorator.php',
162
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Dumper\\Dumper' => $vendorDir.'/symfony/dependency-injection/Dumper/Dumper.php',
163
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Dumper\\DumperInterface' => $vendorDir.'/symfony/dependency-injection/Dumper/DumperInterface.php',
164
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Dumper\\GraphvizDumper' => $vendorDir.'/symfony/dependency-injection/Dumper/GraphvizDumper.php',
165
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Dumper\\PhpDumper' => $vendorDir.'/symfony/dependency-injection/Dumper/PhpDumper.php',
166
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Dumper\\XmlDumper' => $vendorDir.'/symfony/dependency-injection/Dumper/XmlDumper.php',
167
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Dumper\\YamlDumper' => $vendorDir.'/symfony/dependency-injection/Dumper/YamlDumper.php',
168
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\EnvVarProcessor' => $vendorDir.'/symfony/dependency-injection/EnvVarProcessor.php',
169
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\EnvVarProcessorInterface' => $vendorDir.'/symfony/dependency-injection/EnvVarProcessorInterface.php',
170
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\AutowiringFailedException' => $vendorDir.'/symfony/dependency-injection/Exception/AutowiringFailedException.php',
171
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\BadMethodCallException' => $vendorDir.'/symfony/dependency-injection/Exception/BadMethodCallException.php',
172
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\EnvNotFoundException' => $vendorDir.'/symfony/dependency-injection/Exception/EnvNotFoundException.php',
173
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\EnvParameterException' => $vendorDir.'/symfony/dependency-injection/Exception/EnvParameterException.php',
174
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\ExceptionInterface' => $vendorDir.'/symfony/dependency-injection/Exception/ExceptionInterface.php',
175
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\InvalidArgumentException' => $vendorDir.'/symfony/dependency-injection/Exception/InvalidArgumentException.php',
176
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\LogicException' => $vendorDir.'/symfony/dependency-injection/Exception/LogicException.php',
177
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\OutOfBoundsException' => $vendorDir.'/symfony/dependency-injection/Exception/OutOfBoundsException.php',
178
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\ParameterCircularReferenceException' => $vendorDir.'/symfony/dependency-injection/Exception/ParameterCircularReferenceException.php',
179
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\ParameterNotFoundException' => $vendorDir.'/symfony/dependency-injection/Exception/ParameterNotFoundException.php',
180
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\RuntimeException' => $vendorDir.'/symfony/dependency-injection/Exception/RuntimeException.php',
181
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\ServiceCircularReferenceException' => $vendorDir.'/symfony/dependency-injection/Exception/ServiceCircularReferenceException.php',
182
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\ServiceNotFoundException' => $vendorDir.'/symfony/dependency-injection/Exception/ServiceNotFoundException.php',
183
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ExpressionLanguage' => $vendorDir.'/symfony/dependency-injection/ExpressionLanguage.php',
184
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ExpressionLanguageProvider' => $vendorDir.'/symfony/dependency-injection/ExpressionLanguageProvider.php',
185
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Extension\\ConfigurationExtensionInterface' => $vendorDir.'/symfony/dependency-injection/Extension/ConfigurationExtensionInterface.php',
186
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Extension\\Extension' => $vendorDir.'/symfony/dependency-injection/Extension/Extension.php',
187
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Extension\\ExtensionInterface' => $vendorDir.'/symfony/dependency-injection/Extension/ExtensionInterface.php',
188
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Extension\\PrependExtensionInterface' => $vendorDir.'/symfony/dependency-injection/Extension/PrependExtensionInterface.php',
189
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\LazyProxy\\Instantiator\\InstantiatorInterface' => $vendorDir.'/symfony/dependency-injection/LazyProxy/Instantiator/InstantiatorInterface.php',
190
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\LazyProxy\\Instantiator\\RealServiceInstantiator' => $vendorDir.'/symfony/dependency-injection/LazyProxy/Instantiator/RealServiceInstantiator.php',
191
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\LazyProxy\\PhpDumper\\DumperInterface' => $vendorDir.'/symfony/dependency-injection/LazyProxy/PhpDumper/DumperInterface.php',
192
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\LazyProxy\\PhpDumper\\NullDumper' => $vendorDir.'/symfony/dependency-injection/LazyProxy/PhpDumper/NullDumper.php',
193
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\LazyProxy\\ProxyHelper' => $vendorDir.'/symfony/dependency-injection/LazyProxy/ProxyHelper.php',
194
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\ClosureLoader' => $vendorDir.'/symfony/dependency-injection/Loader/ClosureLoader.php',
195
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\AbstractConfigurator' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/AbstractConfigurator.php',
196
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\AbstractServiceConfigurator' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/AbstractServiceConfigurator.php',
197
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\AliasConfigurator' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/AliasConfigurator.php',
198
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\ContainerConfigurator' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/ContainerConfigurator.php',
199
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\DefaultsConfigurator' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/DefaultsConfigurator.php',
200
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\InlineServiceConfigurator' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/InlineServiceConfigurator.php',
201
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\InstanceofConfigurator' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/InstanceofConfigurator.php',
202
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\ParametersConfigurator' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/ParametersConfigurator.php',
203
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\PrototypeConfigurator' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/PrototypeConfigurator.php',
204
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\ReferenceConfigurator' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/ReferenceConfigurator.php',
205
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\ServiceConfigurator' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/ServiceConfigurator.php',
206
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\ServicesConfigurator' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/ServicesConfigurator.php',
207
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\AbstractTrait' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/Traits/AbstractTrait.php',
208
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\ArgumentTrait' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/Traits/ArgumentTrait.php',
209
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\AutoconfigureTrait' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/Traits/AutoconfigureTrait.php',
210
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\AutowireTrait' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/Traits/AutowireTrait.php',
211
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\BindTrait' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/Traits/BindTrait.php',
212
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\CallTrait' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/Traits/CallTrait.php',
213
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\ClassTrait' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/Traits/ClassTrait.php',
214
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\ConfiguratorTrait' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/Traits/ConfiguratorTrait.php',
215
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\DecorateTrait' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/Traits/DecorateTrait.php',
216
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\DeprecateTrait' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/Traits/DeprecateTrait.php',
217
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\FactoryTrait' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/Traits/FactoryTrait.php',
218
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\FileTrait' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/Traits/FileTrait.php',
219
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\LazyTrait' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/Traits/LazyTrait.php',
220
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\ParentTrait' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/Traits/ParentTrait.php',
221
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\PropertyTrait' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/Traits/PropertyTrait.php',
222
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\PublicTrait' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/Traits/PublicTrait.php',
223
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\ShareTrait' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/Traits/ShareTrait.php',
224
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\SyntheticTrait' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/Traits/SyntheticTrait.php',
225
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\TagTrait' => $vendorDir.'/symfony/dependency-injection/Loader/Configurator/Traits/TagTrait.php',
226
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\DirectoryLoader' => $vendorDir.'/symfony/dependency-injection/Loader/DirectoryLoader.php',
227
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\FileLoader' => $vendorDir.'/symfony/dependency-injection/Loader/FileLoader.php',
228
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\GlobFileLoader' => $vendorDir.'/symfony/dependency-injection/Loader/GlobFileLoader.php',
229
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\IniFileLoader' => $vendorDir.'/symfony/dependency-injection/Loader/IniFileLoader.php',
230
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\PhpFileLoader' => $vendorDir.'/symfony/dependency-injection/Loader/PhpFileLoader.php',
231
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\ProtectedPhpFileLoader' => $vendorDir.'/symfony/dependency-injection/Loader/PhpFileLoader.php',
232
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\XmlFileLoader' => $vendorDir.'/symfony/dependency-injection/Loader/XmlFileLoader.php',
233
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader' => $vendorDir.'/symfony/dependency-injection/Loader/YamlFileLoader.php',
234
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Parameter' => $vendorDir.'/symfony/dependency-injection/Parameter.php',
235
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ParameterBag\\EnvPlaceholderParameterBag' => $vendorDir.'/symfony/dependency-injection/ParameterBag/EnvPlaceholderParameterBag.php',
236
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ParameterBag\\FrozenParameterBag' => $vendorDir.'/symfony/dependency-injection/ParameterBag/FrozenParameterBag.php',
237
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ParameterBag\\ParameterBag' => $vendorDir.'/symfony/dependency-injection/ParameterBag/ParameterBag.php',
238
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ParameterBag\\ParameterBagInterface' => $vendorDir.'/symfony/dependency-injection/ParameterBag/ParameterBagInterface.php',
239
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Reference' => $vendorDir.'/symfony/dependency-injection/Reference.php',
240
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ResettableContainerInterface' => $vendorDir.'/symfony/dependency-injection/ResettableContainerInterface.php',
241
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ServiceLocator' => $vendorDir.'/symfony/dependency-injection/ServiceLocator.php',
242
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ServiceSubscriberInterface' => $vendorDir.'/symfony/dependency-injection/ServiceSubscriberInterface.php',
243
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\TaggedContainerInterface' => $vendorDir.'/symfony/dependency-injection/TaggedContainerInterface.php',
244
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\TypedReference' => $vendorDir.'/symfony/dependency-injection/TypedReference.php',
245
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Variable' => $vendorDir.'/symfony/dependency-injection/Variable.php',
246
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Filesystem\\Exception\\ExceptionInterface' => $vendorDir.'/symfony/filesystem/Exception/ExceptionInterface.php',
247
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Filesystem\\Exception\\FileNotFoundException' => $vendorDir.'/symfony/filesystem/Exception/FileNotFoundException.php',
248
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Filesystem\\Exception\\IOException' => $vendorDir.'/symfony/filesystem/Exception/IOException.php',
249
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Filesystem\\Exception\\IOExceptionInterface' => $vendorDir.'/symfony/filesystem/Exception/IOExceptionInterface.php',
250
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Filesystem\\Exception\\InvalidArgumentException' => $vendorDir.'/symfony/filesystem/Exception/InvalidArgumentException.php',
251
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Filesystem\\Filesystem' => $vendorDir.'/symfony/filesystem/Filesystem.php',
252
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Command\\LintCommand' => $vendorDir.'/symfony/yaml/Command/LintCommand.php',
253
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Dumper' => $vendorDir.'/symfony/yaml/Dumper.php',
254
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Escaper' => $vendorDir.'/symfony/yaml/Escaper.php',
255
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Exception\\DumpException' => $vendorDir.'/symfony/yaml/Exception/DumpException.php',
256
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Exception\\ExceptionInterface' => $vendorDir.'/symfony/yaml/Exception/ExceptionInterface.php',
257
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Exception\\ParseException' => $vendorDir.'/symfony/yaml/Exception/ParseException.php',
258
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Exception\\RuntimeException' => $vendorDir.'/symfony/yaml/Exception/RuntimeException.php',
259
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Inline' => $vendorDir.'/symfony/yaml/Inline.php',
260
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Parser' => $vendorDir.'/symfony/yaml/Parser.php',
261
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Tag\\TaggedValue' => $vendorDir.'/symfony/yaml/Tag/TaggedValue.php',
262
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Unescaper' => $vendorDir.'/symfony/yaml/Unescaper.php',
263
+    'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Yaml' => $vendorDir.'/symfony/yaml/Yaml.php',
264
+    'Wordlift\\Modules\\Common\\Symfony\\Polyfill\\Ctype\\Ctype' => $vendorDir.'/symfony/polyfill-ctype/Ctype.php',
265
+    'Wordlift\\Modules\\Common\\Symfony\\Polyfill\\Mbstring\\Mbstring' => $vendorDir.'/symfony/polyfill-mbstring/Mbstring.php',
266
+    'Wordlift\\Modules\\Common\\Symfony\\Polyfill\\Php73\\Php73' => $vendorDir.'/symfony/polyfill-php73/Php73.php',
267
+    'Wordlift\\Modules\\Common\\Symfony\\Polyfill\\Php80\\Php80' => $vendorDir.'/symfony/polyfill-php80/Php80.php',
268
+    'Wordlift\\Modules\\Common\\Symfony\\Polyfill\\Php80\\PhpToken' => $vendorDir.'/symfony/polyfill-php80/PhpToken.php',
269
+    'Wordlift\\Modules\\Common\\UnhandledMatchError' => $vendorDir.'/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',
270
+    'Wordlift\\Modules\\Common\\ValueError' => $vendorDir.'/symfony/polyfill-php80/Resources/stubs/ValueError.php',
271
+    'Wordlift\\Modules\\Common\\cweagans\\Composer\\PatchEvent' => $vendorDir.'/cweagans/composer-patches/src/PatchEvent.php',
272
+    'Wordlift\\Modules\\Common\\cweagans\\Composer\\PatchEvents' => $vendorDir.'/cweagans/composer-patches/src/PatchEvents.php',
273
+    'Wordlift\\Modules\\Common\\cweagans\\Composer\\Patches' => $vendorDir.'/cweagans/composer-patches/src/Patches.php',
274 274
 );
Please login to merge, or discard this patch.