Completed
Push — master ( 897f18...6e78b6 )
by Naveen
01:13
created
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.
src/modules/acf4so/vendor/autoload.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,6 +2,6 @@
 block discarded – undo
2 2
 
3 3
 // autoload.php @generated by Composer
4 4
 
5
-require_once __DIR__ . '/composer/autoload_real.php';
5
+require_once __DIR__.'/composer/autoload_real.php';
6 6
 
7 7
 return ComposerAutoloaderInit9b4e3e175e03285e60ba6309cc2e3477::getLoader();
Please login to merge, or discard this patch.
src/modules/common/third-party/vendor/composer/ClassLoader.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
      */
114 114
     public function getPrefixes()
115 115
     {
116
-        if (!empty($this->prefixesPsr0)) {
116
+        if ( ! empty($this->prefixesPsr0)) {
117 117
             return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
118 118
         }
119 119
 
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
      */
184 184
     public function add($prefix, $paths, $prepend = false)
185 185
     {
186
-        if (!$prefix) {
186
+        if ( ! $prefix) {
187 187
             if ($prepend) {
188 188
                 $this->fallbackDirsPsr0 = array_merge(
189 189
                     (array) $paths,
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
         }
201 201
 
202 202
         $first = $prefix[0];
203
-        if (!isset($this->prefixesPsr0[$first][$prefix])) {
203
+        if ( ! isset($this->prefixesPsr0[$first][$prefix])) {
204 204
             $this->prefixesPsr0[$first][$prefix] = (array) $paths;
205 205
 
206 206
             return;
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
      */
233 233
     public function addPsr4($prefix, $paths, $prepend = false)
234 234
     {
235
-        if (!$prefix) {
235
+        if ( ! $prefix) {
236 236
             // Register directories for the root namespace.
237 237
             if ($prepend) {
238 238
                 $this->fallbackDirsPsr4 = array_merge(
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
                     (array) $paths
246 246
                 );
247 247
             }
248
-        } elseif (!isset($this->prefixDirsPsr4[$prefix])) {
248
+        } elseif ( ! isset($this->prefixDirsPsr4[$prefix])) {
249 249
             // Register directories for a new namespace.
250 250
             $length = strlen($prefix);
251 251
             if ('\\' !== $prefix[$length - 1]) {
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
      */
280 280
     public function set($prefix, $paths)
281 281
     {
282
-        if (!$prefix) {
282
+        if ( ! $prefix) {
283 283
             $this->fallbackDirsPsr0 = (array) $paths;
284 284
         } else {
285 285
             $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
      */
300 300
     public function setPsr4($prefix, $paths)
301 301
     {
302
-        if (!$prefix) {
302
+        if ( ! $prefix) {
303 303
             $this->fallbackDirsPsr4 = (array) $paths;
304 304
         } else {
305 305
             $length = strlen($prefix);
@@ -493,18 +493,18 @@  discard block
 block discarded – undo
493 493
     private function findFileWithExtension($class, $ext)
494 494
     {
495 495
         // PSR-4 lookup
496
-        $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
496
+        $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR).$ext;
497 497
 
498 498
         $first = $class[0];
499 499
         if (isset($this->prefixLengthsPsr4[$first])) {
500 500
             $subPath = $class;
501 501
             while (false !== $lastPos = strrpos($subPath, '\\')) {
502 502
                 $subPath = substr($subPath, 0, $lastPos);
503
-                $search = $subPath . '\\';
503
+                $search = $subPath.'\\';
504 504
                 if (isset($this->prefixDirsPsr4[$search])) {
505
-                    $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
505
+                    $pathEnd = DIRECTORY_SEPARATOR.substr($logicalPathPsr4, $lastPos + 1);
506 506
                     foreach ($this->prefixDirsPsr4[$search] as $dir) {
507
-                        if (file_exists($file = $dir . $pathEnd)) {
507
+                        if (file_exists($file = $dir.$pathEnd)) {
508 508
                             return $file;
509 509
                         }
510 510
                     }
@@ -514,7 +514,7 @@  discard block
 block discarded – undo
514 514
 
515 515
         // PSR-4 fallback dirs
516 516
         foreach ($this->fallbackDirsPsr4 as $dir) {
517
-            if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
517
+            if (file_exists($file = $dir.DIRECTORY_SEPARATOR.$logicalPathPsr4)) {
518 518
                 return $file;
519 519
             }
520 520
         }
@@ -526,14 +526,14 @@  discard block
 block discarded – undo
526 526
                 . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR);
527 527
         } else {
528 528
             // PEAR-like class name
529
-            $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext;
529
+            $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR).$ext;
530 530
         }
531 531
 
532 532
         if (isset($this->prefixesPsr0[$first])) {
533 533
             foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) {
534 534
                 if (0 === strpos($class, $prefix)) {
535 535
                     foreach ($dirs as $dir) {
536
-                        if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
536
+                        if (file_exists($file = $dir.DIRECTORY_SEPARATOR.$logicalPathPsr0)) {
537 537
                             return $file;
538 538
                         }
539 539
                     }
@@ -543,7 +543,7 @@  discard block
 block discarded – undo
543 543
 
544 544
         // PSR-0 fallback dirs
545 545
         foreach ($this->fallbackDirsPsr0 as $dir) {
546
-            if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
546
+            if (file_exists($file = $dir.DIRECTORY_SEPARATOR.$logicalPathPsr0)) {
547 547
                 return $file;
548 548
             }
549 549
         }
Please login to merge, or discard this patch.
src/wordlift/class-object-type-enum.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@  discard block
 block discarded – undo
13 13
 	// value.
14 14
 	const UNKNOWN = 4;
15 15
 
16
-	public static function to_string( $object_type_enum ) {
17
-		switch ( $object_type_enum ) {
16
+	public static function to_string($object_type_enum) {
17
+		switch ($object_type_enum) {
18 18
 			case 0:
19 19
 				return 'post';
20 20
 			case 1:
@@ -30,8 +30,8 @@  discard block
 block discarded – undo
30 30
 		return null;
31 31
 	}
32 32
 
33
-	public static function from_string( $object_type_name ) {
34
-		switch ( $object_type_name ) {
33
+	public static function from_string($object_type_name) {
34
+		switch ($object_type_name) {
35 35
 			case 'post':
36 36
 				return 0;
37 37
 			case 'term':
@@ -45,12 +45,12 @@  discard block
 block discarded – undo
45 45
 		return 4;
46 46
 	}
47 47
 
48
-	public static function from_wordpress_instance( $instance ) {
49
-		if ( ! is_object( $instance ) ) {
48
+	public static function from_wordpress_instance($instance) {
49
+		if ( ! is_object($instance)) {
50 50
 			return null;
51 51
 		}
52 52
 
53
-		switch ( get_class( $instance ) ) {
53
+		switch (get_class($instance)) {
54 54
 			case 'WP_Post':
55 55
 				return self::POST;
56 56
 			case 'WP_Term':
Please login to merge, or discard this patch.
Indentation   +49 added lines, -49 removed lines patch added patch discarded remove patch
@@ -4,62 +4,62 @@
 block discarded – undo
4 4
 
5 5
 class Object_Type_Enum {
6 6
 
7
-	const POST     = 0;
8
-	const TERM     = 1;
9
-	const HOMEPAGE = 2;
10
-	const USER     = 3;
7
+    const POST     = 0;
8
+    const TERM     = 1;
9
+    const HOMEPAGE = 2;
10
+    const USER     = 3;
11 11
 
12
-	// Enum constant to represent currently unknown
13
-	// value.
14
-	const UNKNOWN = 4;
12
+    // Enum constant to represent currently unknown
13
+    // value.
14
+    const UNKNOWN = 4;
15 15
 
16
-	public static function to_string( $object_type_enum ) {
17
-		switch ( $object_type_enum ) {
18
-			case 0:
19
-				return 'post';
20
-			case 1:
21
-				return 'term';
22
-			case 2:
23
-				return 'home';
24
-			case 3:
25
-				return 'user';
26
-			case 4:
27
-				return 'unkn';
28
-		}
16
+    public static function to_string( $object_type_enum ) {
17
+        switch ( $object_type_enum ) {
18
+            case 0:
19
+                return 'post';
20
+            case 1:
21
+                return 'term';
22
+            case 2:
23
+                return 'home';
24
+            case 3:
25
+                return 'user';
26
+            case 4:
27
+                return 'unkn';
28
+        }
29 29
 
30
-		return null;
31
-	}
30
+        return null;
31
+    }
32 32
 
33
-	public static function from_string( $object_type_name ) {
34
-		switch ( $object_type_name ) {
35
-			case 'post':
36
-				return 0;
37
-			case 'term':
38
-				return 1;
39
-			case 'home':
40
-				return 2;
41
-			case 'user':
42
-				return 3;
43
-		}
33
+    public static function from_string( $object_type_name ) {
34
+        switch ( $object_type_name ) {
35
+            case 'post':
36
+                return 0;
37
+            case 'term':
38
+                return 1;
39
+            case 'home':
40
+                return 2;
41
+            case 'user':
42
+                return 3;
43
+        }
44 44
 
45
-		return 4;
46
-	}
45
+        return 4;
46
+    }
47 47
 
48
-	public static function from_wordpress_instance( $instance ) {
49
-		if ( ! is_object( $instance ) ) {
50
-			return null;
51
-		}
48
+    public static function from_wordpress_instance( $instance ) {
49
+        if ( ! is_object( $instance ) ) {
50
+            return null;
51
+        }
52 52
 
53
-		switch ( get_class( $instance ) ) {
54
-			case 'WP_Post':
55
-				return self::POST;
56
-			case 'WP_Term':
57
-				return self::TERM;
58
-			case 'WP_User':
59
-				return self::USER;
60
-		}
53
+        switch ( get_class( $instance ) ) {
54
+            case 'WP_Post':
55
+                return self::POST;
56
+            case 'WP_Term':
57
+                return self::TERM;
58
+            case 'WP_User':
59
+                return self::USER;
60
+        }
61 61
 
62
-		return null;
63
-	}
62
+        return null;
63
+    }
64 64
 
65 65
 }
Please login to merge, or discard this patch.
src/wordlift/api/class-api-service-ext.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -3,10 +3,10 @@
 block discarded – undo
3 3
 namespace Wordlift\Api;
4 4
 
5 5
 interface Api_Service_Ext {
6
-	/**
7
-	 * @return Me_Response
8
-	 */
9
-	public function me();
6
+    /**
7
+     * @return Me_Response
8
+     */
9
+    public function me();
10 10
 }
11 11
 
12 12
 /**
Please login to merge, or discard this patch.
deliciousbrains/wp-background-processing/classes/wp-background-process.php 2 patches
Indentation   +487 added lines, -487 removed lines patch added patch discarded remove patch
@@ -13,492 +13,492 @@
 block discarded – undo
13 13
  */
14 14
 abstract class WP_Background_Process extends WP_Async_Request {
15 15
 
16
-	/**
17
-	 * Action
18
-	 *
19
-	 * (default value: 'background_process')
20
-	 *
21
-	 * @var string
22
-	 * @access protected
23
-	 */
24
-	protected $action = 'background_process';
25
-
26
-	/**
27
-	 * Start time of current process.
28
-	 *
29
-	 * (default value: 0)
30
-	 *
31
-	 * @var int
32
-	 * @access protected
33
-	 */
34
-	protected $start_time = 0;
35
-
36
-	/**
37
-	 * Cron_hook_identifier
38
-	 *
39
-	 * @var mixed
40
-	 * @access protected
41
-	 */
42
-	protected $cron_hook_identifier;
43
-
44
-	/**
45
-	 * Cron_interval_identifier
46
-	 *
47
-	 * @var mixed
48
-	 * @access protected
49
-	 */
50
-	protected $cron_interval_identifier;
51
-
52
-	/**
53
-	 * Initiate new background process
54
-	 */
55
-	public function __construct() {
56
-		parent::__construct();
57
-
58
-		$this->cron_hook_identifier     = $this->identifier . '_cron';
59
-		$this->cron_interval_identifier = $this->identifier . '_cron_interval';
60
-
61
-		add_action( $this->cron_hook_identifier, array( $this, 'handle_cron_healthcheck' ) );
62
-		add_filter( 'cron_schedules', array( $this, 'schedule_cron_healthcheck' ) );
63
-	}
64
-
65
-	/**
66
-	 * Dispatch
67
-	 *
68
-	 * @access public
69
-	 * @return void
70
-	 */
71
-	public function dispatch() {
72
-		// Schedule the cron healthcheck.
73
-		$this->schedule_event();
74
-
75
-		// Perform remote post.
76
-		return parent::dispatch();
77
-	}
78
-
79
-	/**
80
-	 * Push to queue
81
-	 *
82
-	 * @param mixed $data Data.
83
-	 *
84
-	 * @return $this
85
-	 */
86
-	public function push_to_queue( $data ) {
87
-		$this->data[] = $data;
88
-
89
-		return $this;
90
-	}
91
-
92
-	/**
93
-	 * Save queue
94
-	 *
95
-	 * @return $this
96
-	 */
97
-	public function save() {
98
-		$key = $this->generate_key();
99
-
100
-		if ( ! empty( $this->data ) ) {
101
-			update_site_option( $key, $this->data );
102
-		}
103
-
104
-		return $this;
105
-	}
106
-
107
-	/**
108
-	 * Update queue
109
-	 *
110
-	 * @param string $key  Key.
111
-	 * @param array  $data Data.
112
-	 *
113
-	 * @return $this
114
-	 */
115
-	public function update( $key, $data ) {
116
-		if ( ! empty( $data ) ) {
117
-			update_site_option( $key, $data );
118
-		}
119
-
120
-		return $this;
121
-	}
122
-
123
-	/**
124
-	 * Delete queue
125
-	 *
126
-	 * @param string $key Key.
127
-	 *
128
-	 * @return $this
129
-	 */
130
-	public function delete( $key ) {
131
-		delete_site_option( $key );
132
-
133
-		return $this;
134
-	}
135
-
136
-	/**
137
-	 * Generate key
138
-	 *
139
-	 * Generates a unique key based on microtime. Queue items are
140
-	 * given a unique key so that they can be merged upon save.
141
-	 *
142
-	 * @param int $length Length.
143
-	 *
144
-	 * @return string
145
-	 */
146
-	protected function generate_key( $length = 64 ) {
147
-		$unique  = md5( microtime() . rand() );
148
-		$prepend = $this->identifier . '_batch_';
149
-
150
-		return substr( $prepend . $unique, 0, $length );
151
-	}
152
-
153
-	/**
154
-	 * Maybe process queue
155
-	 *
156
-	 * Checks whether data exists within the queue and that
157
-	 * the process is not already running.
158
-	 */
159
-	public function maybe_handle() {
160
-		// Don't lock up other requests while processing
161
-		session_write_close();
162
-
163
-		if ( $this->is_process_running() ) {
164
-			// Background process already running.
165
-			wp_die();
166
-		}
167
-
168
-		if ( $this->is_queue_empty() ) {
169
-			// No data to process.
170
-			wp_die();
171
-		}
172
-
173
-		check_ajax_referer( $this->identifier, 'nonce' );
174
-
175
-		$this->handle();
176
-
177
-		wp_die();
178
-	}
179
-
180
-	/**
181
-	 * Is queue empty
182
-	 *
183
-	 * @return bool
184
-	 */
185
-	protected function is_queue_empty() {
186
-		global $wpdb;
187
-
188
-		$table  = $wpdb->options;
189
-		$column = '';
190
-
191
-		if ( is_multisite() ) {
192
-			$table  = $wpdb->sitemeta;
193
-			$column = 'meta_key';
194
-		}
195
-
196
-		$key = $wpdb->esc_like( $this->identifier . '_batch_' ) . '%';
197
-
198
-		$count = $wpdb->get_var(
199
-			$wpdb->prepare(
200
-				"SELECT COUNT(*) FROM {$table} WHERE {$column} LIKE %s", // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared
201
-				$key
202
-			)
203
-		);
204
-
205
-		return ( $count > 0 ) ? false : true;
206
-	}
207
-
208
-	/**
209
-	 * Is process running
210
-	 *
211
-	 * Check whether the current process is already running
212
-	 * in a background process.
213
-	 */
214
-	protected function is_process_running() {
215
-		if ( get_site_transient( $this->identifier . '_process_lock' ) ) {
216
-			// Process already running.
217
-			return true;
218
-		}
219
-
220
-		return false;
221
-	}
222
-
223
-	/**
224
-	 * Lock process
225
-	 *
226
-	 * Lock the process so that multiple instances can't run simultaneously.
227
-	 * Override if applicable, but the duration should be greater than that
228
-	 * defined in the time_exceeded() method.
229
-	 */
230
-	protected function lock_process() {
231
-		$this->start_time = time(); // Set start time of current process.
232
-
233
-		$lock_duration = ( property_exists( $this, 'queue_lock_time' ) ) ? $this->queue_lock_time : 60; // 1 minute
234
-		$lock_duration = apply_filters( $this->identifier . '_queue_lock_time', $lock_duration );
235
-
236
-		set_site_transient( $this->identifier . '_process_lock', microtime(), $lock_duration );
237
-	}
238
-
239
-	/**
240
-	 * Unlock process
241
-	 *
242
-	 * Unlock the process so that other instances can spawn.
243
-	 *
244
-	 * @return $this
245
-	 */
246
-	protected function unlock_process() {
247
-		delete_site_transient( $this->identifier . '_process_lock' );
248
-
249
-		return $this;
250
-	}
251
-
252
-	/**
253
-	 * Get batch
254
-	 *
255
-	 * @return stdClass Return the first batch from the queue
256
-	 */
257
-	protected function get_batch() {
258
-		global $wpdb;
259
-
260
-		$table        = $wpdb->options;
261
-		$column       = 'option_name';
262
-		$key_column   = 'option_id';
263
-		$value_column = 'option_value';
264
-
265
-		if ( is_multisite() ) {
266
-			$table        = $wpdb->sitemeta;
267
-			$column       = 'meta_key';
268
-			$key_column   = 'meta_id';
269
-			$value_column = 'meta_value';
270
-		}
271
-
272
-		$key = $wpdb->esc_like( $this->identifier . '_batch_' ) . '%';
273
-
274
-		$query = $wpdb->get_row(
275
-			$wpdb->prepare(
276
-				"SELECT * FROM {$table} WHERE {$column} LIKE %s ORDER BY {$key_column} ASC LIMIT 1", // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared
277
-				$key
278
-			)
279
-		);
280
-
281
-		$batch       = new stdClass();
282
-		$batch->key  = $query->$column;
283
-		$batch->data = maybe_unserialize( $query->$value_column );
284
-
285
-		return $batch;
286
-	}
287
-
288
-	/**
289
-	 * Handle
290
-	 *
291
-	 * Pass each queue item to the task handler, while remaining
292
-	 * within server memory and time limit constraints.
293
-	 */
294
-	protected function handle() {
295
-		$this->lock_process();
296
-
297
-		do {
298
-			$batch = $this->get_batch();
299
-
300
-			foreach ( $batch->data as $key => $value ) {
301
-				$task = $this->task( $value );
302
-
303
-				if ( false !== $task ) {
304
-					$batch->data[ $key ] = $task;
305
-				} else {
306
-					unset( $batch->data[ $key ] );
307
-				}
308
-
309
-				if ( $this->time_exceeded() || $this->memory_exceeded() ) {
310
-					// Batch limits reached.
311
-					break;
312
-				}
313
-			}
314
-
315
-			// Update or delete current batch.
316
-			if ( ! empty( $batch->data ) ) {
317
-				$this->update( $batch->key, $batch->data );
318
-			} else {
319
-				$this->delete( $batch->key );
320
-			}
321
-		} while ( ! $this->time_exceeded() && ! $this->memory_exceeded() && ! $this->is_queue_empty() );
322
-
323
-		$this->unlock_process();
324
-
325
-		// Start next batch or complete process.
326
-		if ( ! $this->is_queue_empty() ) {
327
-			$this->dispatch();
328
-		} else {
329
-			$this->complete();
330
-		}
331
-
332
-		wp_die();
333
-	}
334
-
335
-	/**
336
-	 * Memory exceeded
337
-	 *
338
-	 * Ensures the batch process never exceeds 90%
339
-	 * of the maximum WordPress memory.
340
-	 *
341
-	 * @return bool
342
-	 */
343
-	protected function memory_exceeded() {
344
-		$memory_limit   = $this->get_memory_limit() * 0.9; // 90% of max memory
345
-		$current_memory = memory_get_usage( true );
346
-		$return         = false;
347
-
348
-		if ( $current_memory >= $memory_limit ) {
349
-			$return = true;
350
-		}
351
-
352
-		return apply_filters( $this->identifier . '_memory_exceeded', $return );
353
-	}
354
-
355
-	/**
356
-	 * Get memory limit
357
-	 *
358
-	 * @return int
359
-	 */
360
-	protected function get_memory_limit() {
361
-		if ( function_exists( 'ini_get' ) ) {
362
-			$memory_limit = ini_get( 'memory_limit' );
363
-		} else {
364
-			// Sensible default.
365
-			$memory_limit = '128M';
366
-		}
367
-
368
-		if ( ! $memory_limit || - 1 === intval( $memory_limit ) ) {
369
-			// Unlimited, set to 32GB.
370
-			$memory_limit = '32000M';
371
-		}
372
-
373
-		return wp_convert_hr_to_bytes( $memory_limit );
374
-	}
375
-
376
-	/**
377
-	 * Time exceeded.
378
-	 *
379
-	 * Ensures the batch never exceeds a sensible time limit.
380
-	 * A timeout limit of 30s is common on shared hosting.
381
-	 *
382
-	 * @return bool
383
-	 */
384
-	protected function time_exceeded() {
385
-		$finish = $this->start_time + apply_filters( $this->identifier . '_default_time_limit', 20 ); // 20 seconds
386
-		$return = false;
387
-
388
-		if ( time() >= $finish ) {
389
-			$return = true;
390
-		}
391
-
392
-		return apply_filters( $this->identifier . '_time_exceeded', $return );
393
-	}
394
-
395
-	/**
396
-	 * Complete.
397
-	 *
398
-	 * Override if applicable, but ensure that the below actions are
399
-	 * performed, or, call parent::complete().
400
-	 */
401
-	protected function complete() {
402
-		// Unschedule the cron healthcheck.
403
-		$this->clear_scheduled_event();
404
-	}
405
-
406
-	/**
407
-	 * Schedule cron healthcheck
408
-	 *
409
-	 * @access public
410
-	 *
411
-	 * @param mixed $schedules Schedules.
412
-	 *
413
-	 * @return mixed
414
-	 */
415
-	public function schedule_cron_healthcheck( $schedules ) {
416
-		$interval = apply_filters( $this->identifier . '_cron_interval', 5 );
417
-
418
-		if ( property_exists( $this, 'cron_interval' ) ) {
419
-			$interval = apply_filters( $this->identifier . '_cron_interval', $this->cron_interval );
420
-		}
421
-
422
-		// Adds every 5 minutes to the existing schedules.
423
-		$schedules[ $this->identifier . '_cron_interval' ] = array(
424
-			'interval' => MINUTE_IN_SECONDS * $interval,
425
-			'display'  => sprintf( __( 'Every %d Minutes' ), $interval ),
426
-		);
427
-
428
-		return $schedules;
429
-	}
430
-
431
-	/**
432
-	 * Handle cron healthcheck
433
-	 *
434
-	 * Restart the background process if not already running
435
-	 * and data exists in the queue.
436
-	 */
437
-	public function handle_cron_healthcheck() {
438
-		if ( $this->is_process_running() ) {
439
-			// Background process already running.
440
-			exit;
441
-		}
442
-
443
-		if ( $this->is_queue_empty() ) {
444
-			// No data to process.
445
-			$this->clear_scheduled_event();
446
-			exit;
447
-		}
448
-
449
-		$this->handle();
450
-
451
-		exit;
452
-	}
453
-
454
-	/**
455
-	 * Schedule event
456
-	 */
457
-	protected function schedule_event() {
458
-		if ( ! wp_next_scheduled( $this->cron_hook_identifier ) ) {
459
-			wp_schedule_event( time(), $this->cron_interval_identifier, $this->cron_hook_identifier );
460
-		}
461
-	}
462
-
463
-	/**
464
-	 * Clear scheduled event
465
-	 */
466
-	protected function clear_scheduled_event() {
467
-		$timestamp = wp_next_scheduled( $this->cron_hook_identifier );
468
-
469
-		if ( $timestamp ) {
470
-			wp_unschedule_event( $timestamp, $this->cron_hook_identifier );
471
-		}
472
-	}
473
-
474
-	/**
475
-	 * Cancel Process
476
-	 *
477
-	 * Stop processing queue items, clear cronjob and delete batch.
478
-	 */
479
-	public function cancel_process() {
480
-		if ( ! $this->is_queue_empty() ) {
481
-			$batch = $this->get_batch();
482
-
483
-			$this->delete( $batch->key );
484
-
485
-			wp_clear_scheduled_hook( $this->cron_hook_identifier );
486
-		}
487
-
488
-	}
489
-
490
-	/**
491
-	 * Task
492
-	 *
493
-	 * Override this method to perform any actions required on each
494
-	 * queue item. Return the modified item for further processing
495
-	 * in the next pass through. Or, return false to remove the
496
-	 * item from the queue.
497
-	 *
498
-	 * @param mixed $item Queue item to iterate over.
499
-	 *
500
-	 * @return mixed
501
-	 */
502
-	abstract protected function task( $item );
16
+    /**
17
+     * Action
18
+     *
19
+     * (default value: 'background_process')
20
+     *
21
+     * @var string
22
+     * @access protected
23
+     */
24
+    protected $action = 'background_process';
25
+
26
+    /**
27
+     * Start time of current process.
28
+     *
29
+     * (default value: 0)
30
+     *
31
+     * @var int
32
+     * @access protected
33
+     */
34
+    protected $start_time = 0;
35
+
36
+    /**
37
+     * Cron_hook_identifier
38
+     *
39
+     * @var mixed
40
+     * @access protected
41
+     */
42
+    protected $cron_hook_identifier;
43
+
44
+    /**
45
+     * Cron_interval_identifier
46
+     *
47
+     * @var mixed
48
+     * @access protected
49
+     */
50
+    protected $cron_interval_identifier;
51
+
52
+    /**
53
+     * Initiate new background process
54
+     */
55
+    public function __construct() {
56
+        parent::__construct();
57
+
58
+        $this->cron_hook_identifier     = $this->identifier . '_cron';
59
+        $this->cron_interval_identifier = $this->identifier . '_cron_interval';
60
+
61
+        add_action( $this->cron_hook_identifier, array( $this, 'handle_cron_healthcheck' ) );
62
+        add_filter( 'cron_schedules', array( $this, 'schedule_cron_healthcheck' ) );
63
+    }
64
+
65
+    /**
66
+     * Dispatch
67
+     *
68
+     * @access public
69
+     * @return void
70
+     */
71
+    public function dispatch() {
72
+        // Schedule the cron healthcheck.
73
+        $this->schedule_event();
74
+
75
+        // Perform remote post.
76
+        return parent::dispatch();
77
+    }
78
+
79
+    /**
80
+     * Push to queue
81
+     *
82
+     * @param mixed $data Data.
83
+     *
84
+     * @return $this
85
+     */
86
+    public function push_to_queue( $data ) {
87
+        $this->data[] = $data;
88
+
89
+        return $this;
90
+    }
91
+
92
+    /**
93
+     * Save queue
94
+     *
95
+     * @return $this
96
+     */
97
+    public function save() {
98
+        $key = $this->generate_key();
99
+
100
+        if ( ! empty( $this->data ) ) {
101
+            update_site_option( $key, $this->data );
102
+        }
103
+
104
+        return $this;
105
+    }
106
+
107
+    /**
108
+     * Update queue
109
+     *
110
+     * @param string $key  Key.
111
+     * @param array  $data Data.
112
+     *
113
+     * @return $this
114
+     */
115
+    public function update( $key, $data ) {
116
+        if ( ! empty( $data ) ) {
117
+            update_site_option( $key, $data );
118
+        }
119
+
120
+        return $this;
121
+    }
122
+
123
+    /**
124
+     * Delete queue
125
+     *
126
+     * @param string $key Key.
127
+     *
128
+     * @return $this
129
+     */
130
+    public function delete( $key ) {
131
+        delete_site_option( $key );
132
+
133
+        return $this;
134
+    }
135
+
136
+    /**
137
+     * Generate key
138
+     *
139
+     * Generates a unique key based on microtime. Queue items are
140
+     * given a unique key so that they can be merged upon save.
141
+     *
142
+     * @param int $length Length.
143
+     *
144
+     * @return string
145
+     */
146
+    protected function generate_key( $length = 64 ) {
147
+        $unique  = md5( microtime() . rand() );
148
+        $prepend = $this->identifier . '_batch_';
149
+
150
+        return substr( $prepend . $unique, 0, $length );
151
+    }
152
+
153
+    /**
154
+     * Maybe process queue
155
+     *
156
+     * Checks whether data exists within the queue and that
157
+     * the process is not already running.
158
+     */
159
+    public function maybe_handle() {
160
+        // Don't lock up other requests while processing
161
+        session_write_close();
162
+
163
+        if ( $this->is_process_running() ) {
164
+            // Background process already running.
165
+            wp_die();
166
+        }
167
+
168
+        if ( $this->is_queue_empty() ) {
169
+            // No data to process.
170
+            wp_die();
171
+        }
172
+
173
+        check_ajax_referer( $this->identifier, 'nonce' );
174
+
175
+        $this->handle();
176
+
177
+        wp_die();
178
+    }
179
+
180
+    /**
181
+     * Is queue empty
182
+     *
183
+     * @return bool
184
+     */
185
+    protected function is_queue_empty() {
186
+        global $wpdb;
187
+
188
+        $table  = $wpdb->options;
189
+        $column = '';
190
+
191
+        if ( is_multisite() ) {
192
+            $table  = $wpdb->sitemeta;
193
+            $column = 'meta_key';
194
+        }
195
+
196
+        $key = $wpdb->esc_like( $this->identifier . '_batch_' ) . '%';
197
+
198
+        $count = $wpdb->get_var(
199
+            $wpdb->prepare(
200
+                "SELECT COUNT(*) FROM {$table} WHERE {$column} LIKE %s", // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared
201
+                $key
202
+            )
203
+        );
204
+
205
+        return ( $count > 0 ) ? false : true;
206
+    }
207
+
208
+    /**
209
+     * Is process running
210
+     *
211
+     * Check whether the current process is already running
212
+     * in a background process.
213
+     */
214
+    protected function is_process_running() {
215
+        if ( get_site_transient( $this->identifier . '_process_lock' ) ) {
216
+            // Process already running.
217
+            return true;
218
+        }
219
+
220
+        return false;
221
+    }
222
+
223
+    /**
224
+     * Lock process
225
+     *
226
+     * Lock the process so that multiple instances can't run simultaneously.
227
+     * Override if applicable, but the duration should be greater than that
228
+     * defined in the time_exceeded() method.
229
+     */
230
+    protected function lock_process() {
231
+        $this->start_time = time(); // Set start time of current process.
232
+
233
+        $lock_duration = ( property_exists( $this, 'queue_lock_time' ) ) ? $this->queue_lock_time : 60; // 1 minute
234
+        $lock_duration = apply_filters( $this->identifier . '_queue_lock_time', $lock_duration );
235
+
236
+        set_site_transient( $this->identifier . '_process_lock', microtime(), $lock_duration );
237
+    }
238
+
239
+    /**
240
+     * Unlock process
241
+     *
242
+     * Unlock the process so that other instances can spawn.
243
+     *
244
+     * @return $this
245
+     */
246
+    protected function unlock_process() {
247
+        delete_site_transient( $this->identifier . '_process_lock' );
248
+
249
+        return $this;
250
+    }
251
+
252
+    /**
253
+     * Get batch
254
+     *
255
+     * @return stdClass Return the first batch from the queue
256
+     */
257
+    protected function get_batch() {
258
+        global $wpdb;
259
+
260
+        $table        = $wpdb->options;
261
+        $column       = 'option_name';
262
+        $key_column   = 'option_id';
263
+        $value_column = 'option_value';
264
+
265
+        if ( is_multisite() ) {
266
+            $table        = $wpdb->sitemeta;
267
+            $column       = 'meta_key';
268
+            $key_column   = 'meta_id';
269
+            $value_column = 'meta_value';
270
+        }
271
+
272
+        $key = $wpdb->esc_like( $this->identifier . '_batch_' ) . '%';
273
+
274
+        $query = $wpdb->get_row(
275
+            $wpdb->prepare(
276
+                "SELECT * FROM {$table} WHERE {$column} LIKE %s ORDER BY {$key_column} ASC LIMIT 1", // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared
277
+                $key
278
+            )
279
+        );
280
+
281
+        $batch       = new stdClass();
282
+        $batch->key  = $query->$column;
283
+        $batch->data = maybe_unserialize( $query->$value_column );
284
+
285
+        return $batch;
286
+    }
287
+
288
+    /**
289
+     * Handle
290
+     *
291
+     * Pass each queue item to the task handler, while remaining
292
+     * within server memory and time limit constraints.
293
+     */
294
+    protected function handle() {
295
+        $this->lock_process();
296
+
297
+        do {
298
+            $batch = $this->get_batch();
299
+
300
+            foreach ( $batch->data as $key => $value ) {
301
+                $task = $this->task( $value );
302
+
303
+                if ( false !== $task ) {
304
+                    $batch->data[ $key ] = $task;
305
+                } else {
306
+                    unset( $batch->data[ $key ] );
307
+                }
308
+
309
+                if ( $this->time_exceeded() || $this->memory_exceeded() ) {
310
+                    // Batch limits reached.
311
+                    break;
312
+                }
313
+            }
314
+
315
+            // Update or delete current batch.
316
+            if ( ! empty( $batch->data ) ) {
317
+                $this->update( $batch->key, $batch->data );
318
+            } else {
319
+                $this->delete( $batch->key );
320
+            }
321
+        } while ( ! $this->time_exceeded() && ! $this->memory_exceeded() && ! $this->is_queue_empty() );
322
+
323
+        $this->unlock_process();
324
+
325
+        // Start next batch or complete process.
326
+        if ( ! $this->is_queue_empty() ) {
327
+            $this->dispatch();
328
+        } else {
329
+            $this->complete();
330
+        }
331
+
332
+        wp_die();
333
+    }
334
+
335
+    /**
336
+     * Memory exceeded
337
+     *
338
+     * Ensures the batch process never exceeds 90%
339
+     * of the maximum WordPress memory.
340
+     *
341
+     * @return bool
342
+     */
343
+    protected function memory_exceeded() {
344
+        $memory_limit   = $this->get_memory_limit() * 0.9; // 90% of max memory
345
+        $current_memory = memory_get_usage( true );
346
+        $return         = false;
347
+
348
+        if ( $current_memory >= $memory_limit ) {
349
+            $return = true;
350
+        }
351
+
352
+        return apply_filters( $this->identifier . '_memory_exceeded', $return );
353
+    }
354
+
355
+    /**
356
+     * Get memory limit
357
+     *
358
+     * @return int
359
+     */
360
+    protected function get_memory_limit() {
361
+        if ( function_exists( 'ini_get' ) ) {
362
+            $memory_limit = ini_get( 'memory_limit' );
363
+        } else {
364
+            // Sensible default.
365
+            $memory_limit = '128M';
366
+        }
367
+
368
+        if ( ! $memory_limit || - 1 === intval( $memory_limit ) ) {
369
+            // Unlimited, set to 32GB.
370
+            $memory_limit = '32000M';
371
+        }
372
+
373
+        return wp_convert_hr_to_bytes( $memory_limit );
374
+    }
375
+
376
+    /**
377
+     * Time exceeded.
378
+     *
379
+     * Ensures the batch never exceeds a sensible time limit.
380
+     * A timeout limit of 30s is common on shared hosting.
381
+     *
382
+     * @return bool
383
+     */
384
+    protected function time_exceeded() {
385
+        $finish = $this->start_time + apply_filters( $this->identifier . '_default_time_limit', 20 ); // 20 seconds
386
+        $return = false;
387
+
388
+        if ( time() >= $finish ) {
389
+            $return = true;
390
+        }
391
+
392
+        return apply_filters( $this->identifier . '_time_exceeded', $return );
393
+    }
394
+
395
+    /**
396
+     * Complete.
397
+     *
398
+     * Override if applicable, but ensure that the below actions are
399
+     * performed, or, call parent::complete().
400
+     */
401
+    protected function complete() {
402
+        // Unschedule the cron healthcheck.
403
+        $this->clear_scheduled_event();
404
+    }
405
+
406
+    /**
407
+     * Schedule cron healthcheck
408
+     *
409
+     * @access public
410
+     *
411
+     * @param mixed $schedules Schedules.
412
+     *
413
+     * @return mixed
414
+     */
415
+    public function schedule_cron_healthcheck( $schedules ) {
416
+        $interval = apply_filters( $this->identifier . '_cron_interval', 5 );
417
+
418
+        if ( property_exists( $this, 'cron_interval' ) ) {
419
+            $interval = apply_filters( $this->identifier . '_cron_interval', $this->cron_interval );
420
+        }
421
+
422
+        // Adds every 5 minutes to the existing schedules.
423
+        $schedules[ $this->identifier . '_cron_interval' ] = array(
424
+            'interval' => MINUTE_IN_SECONDS * $interval,
425
+            'display'  => sprintf( __( 'Every %d Minutes' ), $interval ),
426
+        );
427
+
428
+        return $schedules;
429
+    }
430
+
431
+    /**
432
+     * Handle cron healthcheck
433
+     *
434
+     * Restart the background process if not already running
435
+     * and data exists in the queue.
436
+     */
437
+    public function handle_cron_healthcheck() {
438
+        if ( $this->is_process_running() ) {
439
+            // Background process already running.
440
+            exit;
441
+        }
442
+
443
+        if ( $this->is_queue_empty() ) {
444
+            // No data to process.
445
+            $this->clear_scheduled_event();
446
+            exit;
447
+        }
448
+
449
+        $this->handle();
450
+
451
+        exit;
452
+    }
453
+
454
+    /**
455
+     * Schedule event
456
+     */
457
+    protected function schedule_event() {
458
+        if ( ! wp_next_scheduled( $this->cron_hook_identifier ) ) {
459
+            wp_schedule_event( time(), $this->cron_interval_identifier, $this->cron_hook_identifier );
460
+        }
461
+    }
462
+
463
+    /**
464
+     * Clear scheduled event
465
+     */
466
+    protected function clear_scheduled_event() {
467
+        $timestamp = wp_next_scheduled( $this->cron_hook_identifier );
468
+
469
+        if ( $timestamp ) {
470
+            wp_unschedule_event( $timestamp, $this->cron_hook_identifier );
471
+        }
472
+    }
473
+
474
+    /**
475
+     * Cancel Process
476
+     *
477
+     * Stop processing queue items, clear cronjob and delete batch.
478
+     */
479
+    public function cancel_process() {
480
+        if ( ! $this->is_queue_empty() ) {
481
+            $batch = $this->get_batch();
482
+
483
+            $this->delete( $batch->key );
484
+
485
+            wp_clear_scheduled_hook( $this->cron_hook_identifier );
486
+        }
487
+
488
+    }
489
+
490
+    /**
491
+     * Task
492
+     *
493
+     * Override this method to perform any actions required on each
494
+     * queue item. Return the modified item for further processing
495
+     * in the next pass through. Or, return false to remove the
496
+     * item from the queue.
497
+     *
498
+     * @param mixed $item Queue item to iterate over.
499
+     *
500
+     * @return mixed
501
+     */
502
+    abstract protected function task( $item );
503 503
 
504 504
 }
Please login to merge, or discard this patch.
Spacing   +68 added lines, -68 removed lines patch added patch discarded remove patch
@@ -55,11 +55,11 @@  discard block
 block discarded – undo
55 55
 	public function __construct() {
56 56
 		parent::__construct();
57 57
 
58
-		$this->cron_hook_identifier     = $this->identifier . '_cron';
59
-		$this->cron_interval_identifier = $this->identifier . '_cron_interval';
58
+		$this->cron_hook_identifier     = $this->identifier.'_cron';
59
+		$this->cron_interval_identifier = $this->identifier.'_cron_interval';
60 60
 
61
-		add_action( $this->cron_hook_identifier, array( $this, 'handle_cron_healthcheck' ) );
62
-		add_filter( 'cron_schedules', array( $this, 'schedule_cron_healthcheck' ) );
61
+		add_action($this->cron_hook_identifier, array($this, 'handle_cron_healthcheck'));
62
+		add_filter('cron_schedules', array($this, 'schedule_cron_healthcheck'));
63 63
 	}
64 64
 
65 65
 	/**
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 	 *
84 84
 	 * @return $this
85 85
 	 */
86
-	public function push_to_queue( $data ) {
86
+	public function push_to_queue($data) {
87 87
 		$this->data[] = $data;
88 88
 
89 89
 		return $this;
@@ -97,8 +97,8 @@  discard block
 block discarded – undo
97 97
 	public function save() {
98 98
 		$key = $this->generate_key();
99 99
 
100
-		if ( ! empty( $this->data ) ) {
101
-			update_site_option( $key, $this->data );
100
+		if ( ! empty($this->data)) {
101
+			update_site_option($key, $this->data);
102 102
 		}
103 103
 
104 104
 		return $this;
@@ -112,9 +112,9 @@  discard block
 block discarded – undo
112 112
 	 *
113 113
 	 * @return $this
114 114
 	 */
115
-	public function update( $key, $data ) {
116
-		if ( ! empty( $data ) ) {
117
-			update_site_option( $key, $data );
115
+	public function update($key, $data) {
116
+		if ( ! empty($data)) {
117
+			update_site_option($key, $data);
118 118
 		}
119 119
 
120 120
 		return $this;
@@ -127,8 +127,8 @@  discard block
 block discarded – undo
127 127
 	 *
128 128
 	 * @return $this
129 129
 	 */
130
-	public function delete( $key ) {
131
-		delete_site_option( $key );
130
+	public function delete($key) {
131
+		delete_site_option($key);
132 132
 
133 133
 		return $this;
134 134
 	}
@@ -143,11 +143,11 @@  discard block
 block discarded – undo
143 143
 	 *
144 144
 	 * @return string
145 145
 	 */
146
-	protected function generate_key( $length = 64 ) {
147
-		$unique  = md5( microtime() . rand() );
148
-		$prepend = $this->identifier . '_batch_';
146
+	protected function generate_key($length = 64) {
147
+		$unique  = md5(microtime().rand());
148
+		$prepend = $this->identifier.'_batch_';
149 149
 
150
-		return substr( $prepend . $unique, 0, $length );
150
+		return substr($prepend.$unique, 0, $length);
151 151
 	}
152 152
 
153 153
 	/**
@@ -160,17 +160,17 @@  discard block
 block discarded – undo
160 160
 		// Don't lock up other requests while processing
161 161
 		session_write_close();
162 162
 
163
-		if ( $this->is_process_running() ) {
163
+		if ($this->is_process_running()) {
164 164
 			// Background process already running.
165 165
 			wp_die();
166 166
 		}
167 167
 
168
-		if ( $this->is_queue_empty() ) {
168
+		if ($this->is_queue_empty()) {
169 169
 			// No data to process.
170 170
 			wp_die();
171 171
 		}
172 172
 
173
-		check_ajax_referer( $this->identifier, 'nonce' );
173
+		check_ajax_referer($this->identifier, 'nonce');
174 174
 
175 175
 		$this->handle();
176 176
 
@@ -188,12 +188,12 @@  discard block
 block discarded – undo
188 188
 		$table  = $wpdb->options;
189 189
 		$column = '';
190 190
 
191
-		if ( is_multisite() ) {
191
+		if (is_multisite()) {
192 192
 			$table  = $wpdb->sitemeta;
193 193
 			$column = 'meta_key';
194 194
 		}
195 195
 
196
-		$key = $wpdb->esc_like( $this->identifier . '_batch_' ) . '%';
196
+		$key = $wpdb->esc_like($this->identifier.'_batch_').'%';
197 197
 
198 198
 		$count = $wpdb->get_var(
199 199
 			$wpdb->prepare(
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
 			)
203 203
 		);
204 204
 
205
-		return ( $count > 0 ) ? false : true;
205
+		return ($count > 0) ? false : true;
206 206
 	}
207 207
 
208 208
 	/**
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
 	 * in a background process.
213 213
 	 */
214 214
 	protected function is_process_running() {
215
-		if ( get_site_transient( $this->identifier . '_process_lock' ) ) {
215
+		if (get_site_transient($this->identifier.'_process_lock')) {
216 216
 			// Process already running.
217 217
 			return true;
218 218
 		}
@@ -230,10 +230,10 @@  discard block
 block discarded – undo
230 230
 	protected function lock_process() {
231 231
 		$this->start_time = time(); // Set start time of current process.
232 232
 
233
-		$lock_duration = ( property_exists( $this, 'queue_lock_time' ) ) ? $this->queue_lock_time : 60; // 1 minute
234
-		$lock_duration = apply_filters( $this->identifier . '_queue_lock_time', $lock_duration );
233
+		$lock_duration = (property_exists($this, 'queue_lock_time')) ? $this->queue_lock_time : 60; // 1 minute
234
+		$lock_duration = apply_filters($this->identifier.'_queue_lock_time', $lock_duration);
235 235
 
236
-		set_site_transient( $this->identifier . '_process_lock', microtime(), $lock_duration );
236
+		set_site_transient($this->identifier.'_process_lock', microtime(), $lock_duration);
237 237
 	}
238 238
 
239 239
 	/**
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
 	 * @return $this
245 245
 	 */
246 246
 	protected function unlock_process() {
247
-		delete_site_transient( $this->identifier . '_process_lock' );
247
+		delete_site_transient($this->identifier.'_process_lock');
248 248
 
249 249
 		return $this;
250 250
 	}
@@ -262,14 +262,14 @@  discard block
 block discarded – undo
262 262
 		$key_column   = 'option_id';
263 263
 		$value_column = 'option_value';
264 264
 
265
-		if ( is_multisite() ) {
265
+		if (is_multisite()) {
266 266
 			$table        = $wpdb->sitemeta;
267 267
 			$column       = 'meta_key';
268 268
 			$key_column   = 'meta_id';
269 269
 			$value_column = 'meta_value';
270 270
 		}
271 271
 
272
-		$key = $wpdb->esc_like( $this->identifier . '_batch_' ) . '%';
272
+		$key = $wpdb->esc_like($this->identifier.'_batch_').'%';
273 273
 
274 274
 		$query = $wpdb->get_row(
275 275
 			$wpdb->prepare(
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
 
281 281
 		$batch       = new stdClass();
282 282
 		$batch->key  = $query->$column;
283
-		$batch->data = maybe_unserialize( $query->$value_column );
283
+		$batch->data = maybe_unserialize($query->$value_column);
284 284
 
285 285
 		return $batch;
286 286
 	}
@@ -297,33 +297,33 @@  discard block
 block discarded – undo
297 297
 		do {
298 298
 			$batch = $this->get_batch();
299 299
 
300
-			foreach ( $batch->data as $key => $value ) {
301
-				$task = $this->task( $value );
300
+			foreach ($batch->data as $key => $value) {
301
+				$task = $this->task($value);
302 302
 
303
-				if ( false !== $task ) {
304
-					$batch->data[ $key ] = $task;
303
+				if (false !== $task) {
304
+					$batch->data[$key] = $task;
305 305
 				} else {
306
-					unset( $batch->data[ $key ] );
306
+					unset($batch->data[$key]);
307 307
 				}
308 308
 
309
-				if ( $this->time_exceeded() || $this->memory_exceeded() ) {
309
+				if ($this->time_exceeded() || $this->memory_exceeded()) {
310 310
 					// Batch limits reached.
311 311
 					break;
312 312
 				}
313 313
 			}
314 314
 
315 315
 			// Update or delete current batch.
316
-			if ( ! empty( $batch->data ) ) {
317
-				$this->update( $batch->key, $batch->data );
316
+			if ( ! empty($batch->data)) {
317
+				$this->update($batch->key, $batch->data);
318 318
 			} else {
319
-				$this->delete( $batch->key );
319
+				$this->delete($batch->key);
320 320
 			}
321
-		} while ( ! $this->time_exceeded() && ! $this->memory_exceeded() && ! $this->is_queue_empty() );
321
+		} while ( ! $this->time_exceeded() && ! $this->memory_exceeded() && ! $this->is_queue_empty());
322 322
 
323 323
 		$this->unlock_process();
324 324
 
325 325
 		// Start next batch or complete process.
326
-		if ( ! $this->is_queue_empty() ) {
326
+		if ( ! $this->is_queue_empty()) {
327 327
 			$this->dispatch();
328 328
 		} else {
329 329
 			$this->complete();
@@ -342,14 +342,14 @@  discard block
 block discarded – undo
342 342
 	 */
343 343
 	protected function memory_exceeded() {
344 344
 		$memory_limit   = $this->get_memory_limit() * 0.9; // 90% of max memory
345
-		$current_memory = memory_get_usage( true );
345
+		$current_memory = memory_get_usage(true);
346 346
 		$return         = false;
347 347
 
348
-		if ( $current_memory >= $memory_limit ) {
348
+		if ($current_memory >= $memory_limit) {
349 349
 			$return = true;
350 350
 		}
351 351
 
352
-		return apply_filters( $this->identifier . '_memory_exceeded', $return );
352
+		return apply_filters($this->identifier.'_memory_exceeded', $return);
353 353
 	}
354 354
 
355 355
 	/**
@@ -358,19 +358,19 @@  discard block
 block discarded – undo
358 358
 	 * @return int
359 359
 	 */
360 360
 	protected function get_memory_limit() {
361
-		if ( function_exists( 'ini_get' ) ) {
362
-			$memory_limit = ini_get( 'memory_limit' );
361
+		if (function_exists('ini_get')) {
362
+			$memory_limit = ini_get('memory_limit');
363 363
 		} else {
364 364
 			// Sensible default.
365 365
 			$memory_limit = '128M';
366 366
 		}
367 367
 
368
-		if ( ! $memory_limit || - 1 === intval( $memory_limit ) ) {
368
+		if ( ! $memory_limit || - 1 === intval($memory_limit)) {
369 369
 			// Unlimited, set to 32GB.
370 370
 			$memory_limit = '32000M';
371 371
 		}
372 372
 
373
-		return wp_convert_hr_to_bytes( $memory_limit );
373
+		return wp_convert_hr_to_bytes($memory_limit);
374 374
 	}
375 375
 
376 376
 	/**
@@ -382,14 +382,14 @@  discard block
 block discarded – undo
382 382
 	 * @return bool
383 383
 	 */
384 384
 	protected function time_exceeded() {
385
-		$finish = $this->start_time + apply_filters( $this->identifier . '_default_time_limit', 20 ); // 20 seconds
385
+		$finish = $this->start_time + apply_filters($this->identifier.'_default_time_limit', 20); // 20 seconds
386 386
 		$return = false;
387 387
 
388
-		if ( time() >= $finish ) {
388
+		if (time() >= $finish) {
389 389
 			$return = true;
390 390
 		}
391 391
 
392
-		return apply_filters( $this->identifier . '_time_exceeded', $return );
392
+		return apply_filters($this->identifier.'_time_exceeded', $return);
393 393
 	}
394 394
 
395 395
 	/**
@@ -412,17 +412,17 @@  discard block
 block discarded – undo
412 412
 	 *
413 413
 	 * @return mixed
414 414
 	 */
415
-	public function schedule_cron_healthcheck( $schedules ) {
416
-		$interval = apply_filters( $this->identifier . '_cron_interval', 5 );
415
+	public function schedule_cron_healthcheck($schedules) {
416
+		$interval = apply_filters($this->identifier.'_cron_interval', 5);
417 417
 
418
-		if ( property_exists( $this, 'cron_interval' ) ) {
419
-			$interval = apply_filters( $this->identifier . '_cron_interval', $this->cron_interval );
418
+		if (property_exists($this, 'cron_interval')) {
419
+			$interval = apply_filters($this->identifier.'_cron_interval', $this->cron_interval);
420 420
 		}
421 421
 
422 422
 		// Adds every 5 minutes to the existing schedules.
423
-		$schedules[ $this->identifier . '_cron_interval' ] = array(
423
+		$schedules[$this->identifier.'_cron_interval'] = array(
424 424
 			'interval' => MINUTE_IN_SECONDS * $interval,
425
-			'display'  => sprintf( __( 'Every %d Minutes' ), $interval ),
425
+			'display'  => sprintf(__('Every %d Minutes'), $interval),
426 426
 		);
427 427
 
428 428
 		return $schedules;
@@ -435,12 +435,12 @@  discard block
 block discarded – undo
435 435
 	 * and data exists in the queue.
436 436
 	 */
437 437
 	public function handle_cron_healthcheck() {
438
-		if ( $this->is_process_running() ) {
438
+		if ($this->is_process_running()) {
439 439
 			// Background process already running.
440 440
 			exit;
441 441
 		}
442 442
 
443
-		if ( $this->is_queue_empty() ) {
443
+		if ($this->is_queue_empty()) {
444 444
 			// No data to process.
445 445
 			$this->clear_scheduled_event();
446 446
 			exit;
@@ -455,8 +455,8 @@  discard block
 block discarded – undo
455 455
 	 * Schedule event
456 456
 	 */
457 457
 	protected function schedule_event() {
458
-		if ( ! wp_next_scheduled( $this->cron_hook_identifier ) ) {
459
-			wp_schedule_event( time(), $this->cron_interval_identifier, $this->cron_hook_identifier );
458
+		if ( ! wp_next_scheduled($this->cron_hook_identifier)) {
459
+			wp_schedule_event(time(), $this->cron_interval_identifier, $this->cron_hook_identifier);
460 460
 		}
461 461
 	}
462 462
 
@@ -464,10 +464,10 @@  discard block
 block discarded – undo
464 464
 	 * Clear scheduled event
465 465
 	 */
466 466
 	protected function clear_scheduled_event() {
467
-		$timestamp = wp_next_scheduled( $this->cron_hook_identifier );
467
+		$timestamp = wp_next_scheduled($this->cron_hook_identifier);
468 468
 
469
-		if ( $timestamp ) {
470
-			wp_unschedule_event( $timestamp, $this->cron_hook_identifier );
469
+		if ($timestamp) {
470
+			wp_unschedule_event($timestamp, $this->cron_hook_identifier);
471 471
 		}
472 472
 	}
473 473
 
@@ -477,12 +477,12 @@  discard block
 block discarded – undo
477 477
 	 * Stop processing queue items, clear cronjob and delete batch.
478 478
 	 */
479 479
 	public function cancel_process() {
480
-		if ( ! $this->is_queue_empty() ) {
480
+		if ( ! $this->is_queue_empty()) {
481 481
 			$batch = $this->get_batch();
482 482
 
483
-			$this->delete( $batch->key );
483
+			$this->delete($batch->key);
484 484
 
485
-			wp_clear_scheduled_hook( $this->cron_hook_identifier );
485
+			wp_clear_scheduled_hook($this->cron_hook_identifier);
486 486
 		}
487 487
 
488 488
 	}
@@ -499,6 +499,6 @@  discard block
 block discarded – undo
499 499
 	 *
500 500
 	 * @return mixed
501 501
 	 */
502
-	abstract protected function task( $item );
502
+	abstract protected function task($item);
503 503
 
504 504
 }
Please login to merge, or discard this patch.