Completed
Push — develop ( 36a199...920e68 )
by David
01:14
created
src/modules/common/includes/Date_Utils.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -6,12 +6,12 @@
 block discarded – undo
6 6
 use DateTimeZone;
7 7
 
8 8
 class Date_Utils {
9
-	public static function now_utc() {
10
-		return new DateTimeImmutable( 'now', new DateTimeZone( 'UTC' ) );
11
-	}
9
+    public static function now_utc() {
10
+        return new DateTimeImmutable( 'now', new DateTimeZone( 'UTC' ) );
11
+    }
12 12
 
13
-	public static function to_iso_string( $value ) {
14
-		return is_a( $value, 'DateTimeInterface' )
15
-			? date_format( $value, 'Y-m-d\TH:i:s\Z' ) : null;
16
-	}
13
+    public static function to_iso_string( $value ) {
14
+        return is_a( $value, 'DateTimeInterface' )
15
+            ? date_format( $value, 'Y-m-d\TH:i:s\Z' ) : null;
16
+    }
17 17
 }
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -7,11 +7,11 @@
 block discarded – undo
7 7
 
8 8
 class Date_Utils {
9 9
 	public static function now_utc() {
10
-		return new DateTimeImmutable( 'now', new DateTimeZone( 'UTC' ) );
10
+		return new DateTimeImmutable('now', new DateTimeZone('UTC'));
11 11
 	}
12 12
 
13
-	public static function to_iso_string( $value ) {
14
-		return is_a( $value, 'DateTimeInterface' )
15
-			? date_format( $value, 'Y-m-d\TH:i:s\Z' ) : null;
13
+	public static function to_iso_string($value) {
14
+		return is_a($value, 'DateTimeInterface')
15
+			? date_format($value, 'Y-m-d\TH:i:s\Z') : null;
16 16
 	}
17 17
 }
Please login to merge, or discard this patch.
src/modules/common/includes/Synchronization/Runner_State.php 2 patches
Indentation   +150 added lines, -150 removed lines patch added patch discarded remove patch
@@ -4,155 +4,155 @@
 block discarded – undo
4 4
 
5 5
 class Runner_State implements \Serializable {
6 6
 
7
-	private $total;
8
-	private $offset;
9
-	private $last_id;
10
-	private $started_at;
11
-	private $stopped_at;
12
-	private $updated_at;
13
-
14
-	/**
15
-	 * @return int
16
-	 */
17
-	public function get_total() {
18
-		return $this->total;
19
-	}
20
-
21
-	/**
22
-	 * @param int $total
23
-	 */
24
-	public function set_total( $total ) {
25
-		$this->total = $total;
26
-	}
27
-
28
-	/**
29
-	 * @return int
30
-	 */
31
-	public function get_offset() {
32
-		return $this->offset;
33
-	}
34
-
35
-	/**
36
-	 * @param int $offset
37
-	 */
38
-	public function set_offset( $offset ) {
39
-		$this->offset = $offset;
40
-	}
41
-
42
-	/**
43
-	 * @return mixed
44
-	 */
45
-	public function get_last_id() {
46
-		return $this->last_id;
47
-	}
48
-
49
-	/**
50
-	 * @param mixed $last_id
51
-	 */
52
-	public function set_last_id( $last_id ) {
53
-		$this->last_id = $last_id;
54
-	}
55
-
56
-	/**
57
-	 * @return mixed
58
-	 */
59
-	public function get_started_at() {
60
-		return $this->started_at;
61
-	}
62
-
63
-	/**
64
-	 * @param mixed $started_at
65
-	 */
66
-	public function set_started_at( $started_at ) {
67
-		$this->started_at = $started_at;
68
-	}
69
-
70
-	/**
71
-	 * @return mixed
72
-	 */
73
-	public function get_stopped_at() {
74
-		return $this->stopped_at;
75
-	}
76
-
77
-	/**
78
-	 * @param mixed $stopped_at
79
-	 */
80
-	public function set_stopped_at( $stopped_at ) {
81
-		$this->stopped_at = $stopped_at;
82
-	}
83
-
84
-	/**
85
-	 * @return mixed
86
-	 */
87
-	public function get_updated_at() {
88
-		return $this->updated_at;
89
-	}
90
-
91
-	/**
92
-	 * @param mixed $updated_at
93
-	 */
94
-	public function set_updated_at( $updated_at ) {
95
-		$this->updated_at = $updated_at;
96
-	}
97
-
98
-	public function is_running() {
99
-		return isset( $this->started_at ) && ! isset( $this->stopped_at );
100
-	}
101
-
102
-	public function __serialize() {
103
-		return array(
104
-			'total'      => $this->total,
105
-			'offset'     => $this->offset,
106
-			'last_id'    => $this->last_id,
107
-			'started_at' => $this->started_at,
108
-			'stopped_at' => $this->stopped_at,
109
-			'updated_at' => $this->updated_at,
110
-		);
111
-	}
112
-
113
-	public function __unserialize( array $data ) {
114
-
115
-		if ( isset( $data['total'] ) ) {
116
-			$this->set_total( $data['total'] );
117
-		}
118
-		if ( isset( $data['offset'] ) ) {
119
-			$this->set_offset( $data['offset'] );
120
-		}
121
-		if ( isset( $data['last_id'] ) ) {
122
-			$this->set_last_id( $data['last_id'] );
123
-		}
124
-		if ( isset( $data['started_at'] ) ) {
125
-			$this->set_started_at( $data['started_at'] );
126
-		}
127
-		if ( isset( $data['stopped_at'] ) ) {
128
-			$this->set_stopped_at( $data['stopped_at'] );
129
-		}
130
-		if ( isset( $data['updated_at'] ) ) {
131
-			$this->set_updated_at( $data['updated_at'] );
132
-		}
133
-
134
-	}
135
-
136
-	/**
137
-	 * Controls how the object is represented during PHP serialization.
138
-	 *
139
-	 * @return string The PHP serialized representation of the object.
140
-	 */
141
-	public function serialize() {
142
-		// phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.serialize_serialize
143
-		return serialize( $this->__serialize() );
144
-	}
145
-
146
-	/**
147
-	 * Controls how the object is reconstructed from a PHP serialized representation.
148
-	 *
149
-	 * @param string $data The PHP serialized representation of the object.
150
-	 *
151
-	 * @return void
152
-	 */
153
-	public function unserialize( $data ) {
154
-		// phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.serialize_unserialize
155
-		$this->__unserialize( unserialize( $data ) );
156
-	}
7
+    private $total;
8
+    private $offset;
9
+    private $last_id;
10
+    private $started_at;
11
+    private $stopped_at;
12
+    private $updated_at;
13
+
14
+    /**
15
+     * @return int
16
+     */
17
+    public function get_total() {
18
+        return $this->total;
19
+    }
20
+
21
+    /**
22
+     * @param int $total
23
+     */
24
+    public function set_total( $total ) {
25
+        $this->total = $total;
26
+    }
27
+
28
+    /**
29
+     * @return int
30
+     */
31
+    public function get_offset() {
32
+        return $this->offset;
33
+    }
34
+
35
+    /**
36
+     * @param int $offset
37
+     */
38
+    public function set_offset( $offset ) {
39
+        $this->offset = $offset;
40
+    }
41
+
42
+    /**
43
+     * @return mixed
44
+     */
45
+    public function get_last_id() {
46
+        return $this->last_id;
47
+    }
48
+
49
+    /**
50
+     * @param mixed $last_id
51
+     */
52
+    public function set_last_id( $last_id ) {
53
+        $this->last_id = $last_id;
54
+    }
55
+
56
+    /**
57
+     * @return mixed
58
+     */
59
+    public function get_started_at() {
60
+        return $this->started_at;
61
+    }
62
+
63
+    /**
64
+     * @param mixed $started_at
65
+     */
66
+    public function set_started_at( $started_at ) {
67
+        $this->started_at = $started_at;
68
+    }
69
+
70
+    /**
71
+     * @return mixed
72
+     */
73
+    public function get_stopped_at() {
74
+        return $this->stopped_at;
75
+    }
76
+
77
+    /**
78
+     * @param mixed $stopped_at
79
+     */
80
+    public function set_stopped_at( $stopped_at ) {
81
+        $this->stopped_at = $stopped_at;
82
+    }
83
+
84
+    /**
85
+     * @return mixed
86
+     */
87
+    public function get_updated_at() {
88
+        return $this->updated_at;
89
+    }
90
+
91
+    /**
92
+     * @param mixed $updated_at
93
+     */
94
+    public function set_updated_at( $updated_at ) {
95
+        $this->updated_at = $updated_at;
96
+    }
97
+
98
+    public function is_running() {
99
+        return isset( $this->started_at ) && ! isset( $this->stopped_at );
100
+    }
101
+
102
+    public function __serialize() {
103
+        return array(
104
+            'total'      => $this->total,
105
+            'offset'     => $this->offset,
106
+            'last_id'    => $this->last_id,
107
+            'started_at' => $this->started_at,
108
+            'stopped_at' => $this->stopped_at,
109
+            'updated_at' => $this->updated_at,
110
+        );
111
+    }
112
+
113
+    public function __unserialize( array $data ) {
114
+
115
+        if ( isset( $data['total'] ) ) {
116
+            $this->set_total( $data['total'] );
117
+        }
118
+        if ( isset( $data['offset'] ) ) {
119
+            $this->set_offset( $data['offset'] );
120
+        }
121
+        if ( isset( $data['last_id'] ) ) {
122
+            $this->set_last_id( $data['last_id'] );
123
+        }
124
+        if ( isset( $data['started_at'] ) ) {
125
+            $this->set_started_at( $data['started_at'] );
126
+        }
127
+        if ( isset( $data['stopped_at'] ) ) {
128
+            $this->set_stopped_at( $data['stopped_at'] );
129
+        }
130
+        if ( isset( $data['updated_at'] ) ) {
131
+            $this->set_updated_at( $data['updated_at'] );
132
+        }
133
+
134
+    }
135
+
136
+    /**
137
+     * Controls how the object is represented during PHP serialization.
138
+     *
139
+     * @return string The PHP serialized representation of the object.
140
+     */
141
+    public function serialize() {
142
+        // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.serialize_serialize
143
+        return serialize( $this->__serialize() );
144
+    }
145
+
146
+    /**
147
+     * Controls how the object is reconstructed from a PHP serialized representation.
148
+     *
149
+     * @param string $data The PHP serialized representation of the object.
150
+     *
151
+     * @return void
152
+     */
153
+    public function unserialize( $data ) {
154
+        // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.serialize_unserialize
155
+        $this->__unserialize( unserialize( $data ) );
156
+    }
157 157
 
158 158
 }
Please login to merge, or discard this patch.
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 	/**
22 22
 	 * @param int $total
23 23
 	 */
24
-	public function set_total( $total ) {
24
+	public function set_total($total) {
25 25
 		$this->total = $total;
26 26
 	}
27 27
 
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 	/**
36 36
 	 * @param int $offset
37 37
 	 */
38
-	public function set_offset( $offset ) {
38
+	public function set_offset($offset) {
39 39
 		$this->offset = $offset;
40 40
 	}
41 41
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 	/**
50 50
 	 * @param mixed $last_id
51 51
 	 */
52
-	public function set_last_id( $last_id ) {
52
+	public function set_last_id($last_id) {
53 53
 		$this->last_id = $last_id;
54 54
 	}
55 55
 
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
 	/**
64 64
 	 * @param mixed $started_at
65 65
 	 */
66
-	public function set_started_at( $started_at ) {
66
+	public function set_started_at($started_at) {
67 67
 		$this->started_at = $started_at;
68 68
 	}
69 69
 
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 	/**
78 78
 	 * @param mixed $stopped_at
79 79
 	 */
80
-	public function set_stopped_at( $stopped_at ) {
80
+	public function set_stopped_at($stopped_at) {
81 81
 		$this->stopped_at = $stopped_at;
82 82
 	}
83 83
 
@@ -91,12 +91,12 @@  discard block
 block discarded – undo
91 91
 	/**
92 92
 	 * @param mixed $updated_at
93 93
 	 */
94
-	public function set_updated_at( $updated_at ) {
94
+	public function set_updated_at($updated_at) {
95 95
 		$this->updated_at = $updated_at;
96 96
 	}
97 97
 
98 98
 	public function is_running() {
99
-		return isset( $this->started_at ) && ! isset( $this->stopped_at );
99
+		return isset($this->started_at) && ! isset($this->stopped_at);
100 100
 	}
101 101
 
102 102
 	public function __serialize() {
@@ -110,25 +110,25 @@  discard block
 block discarded – undo
110 110
 		);
111 111
 	}
112 112
 
113
-	public function __unserialize( array $data ) {
113
+	public function __unserialize(array $data) {
114 114
 
115
-		if ( isset( $data['total'] ) ) {
116
-			$this->set_total( $data['total'] );
115
+		if (isset($data['total'])) {
116
+			$this->set_total($data['total']);
117 117
 		}
118
-		if ( isset( $data['offset'] ) ) {
119
-			$this->set_offset( $data['offset'] );
118
+		if (isset($data['offset'])) {
119
+			$this->set_offset($data['offset']);
120 120
 		}
121
-		if ( isset( $data['last_id'] ) ) {
122
-			$this->set_last_id( $data['last_id'] );
121
+		if (isset($data['last_id'])) {
122
+			$this->set_last_id($data['last_id']);
123 123
 		}
124
-		if ( isset( $data['started_at'] ) ) {
125
-			$this->set_started_at( $data['started_at'] );
124
+		if (isset($data['started_at'])) {
125
+			$this->set_started_at($data['started_at']);
126 126
 		}
127
-		if ( isset( $data['stopped_at'] ) ) {
128
-			$this->set_stopped_at( $data['stopped_at'] );
127
+		if (isset($data['stopped_at'])) {
128
+			$this->set_stopped_at($data['stopped_at']);
129 129
 		}
130
-		if ( isset( $data['updated_at'] ) ) {
131
-			$this->set_updated_at( $data['updated_at'] );
130
+		if (isset($data['updated_at'])) {
131
+			$this->set_updated_at($data['updated_at']);
132 132
 		}
133 133
 
134 134
 	}
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
 	 */
141 141
 	public function serialize() {
142 142
 		// phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.serialize_serialize
143
-		return serialize( $this->__serialize() );
143
+		return serialize($this->__serialize());
144 144
 	}
145 145
 
146 146
 	/**
@@ -150,9 +150,9 @@  discard block
 block discarded – undo
150 150
 	 *
151 151
 	 * @return void
152 152
 	 */
153
-	public function unserialize( $data ) {
153
+	public function unserialize($data) {
154 154
 		// phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.serialize_unserialize
155
-		$this->__unserialize( unserialize( $data ) );
155
+		$this->__unserialize(unserialize($data));
156 156
 	}
157 157
 
158 158
 }
Please login to merge, or discard this patch.
src/modules/common/includes/Synchronization/Store.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -4,12 +4,12 @@
 block discarded – undo
4 4
 
5 5
 interface Store {
6 6
 
7
-	/**
8
-	 * @param int $id_greater_than The starting offset (excluded).
9
-	 * @param int $batch_size The batch size.
10
-	 *
11
-	 * @return array
12
-	 */
13
-	public function list_items( $id_greater_than, $batch_size );
7
+    /**
8
+     * @param int $id_greater_than The starting offset (excluded).
9
+     * @param int $batch_size The batch size.
10
+     *
11
+     * @return array
12
+     */
13
+    public function list_items( $id_greater_than, $batch_size );
14 14
 
15 15
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,6 +10,6 @@
 block discarded – undo
10 10
 	 *
11 11
 	 * @return array
12 12
 	 */
13
-	public function list_items( $id_greater_than, $batch_size );
13
+	public function list_items($id_greater_than, $batch_size);
14 14
 
15 15
 }
Please login to merge, or discard this patch.
src/modules/common/includes/Synchronization/Runner.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -4,13 +4,13 @@
 block discarded – undo
4 4
 
5 5
 interface Runner {
6 6
 
7
-	/**
8
-	 * @param int $last_id The last id.
9
-	 *
10
-	 * @return int The number of processed items.
11
-	 */
12
-	public function run( $last_id );
7
+    /**
8
+     * @param int $last_id The last id.
9
+     *
10
+     * @return int The number of processed items.
11
+     */
12
+    public function run( $last_id );
13 13
 
14
-	public function get_total();
14
+    public function get_total();
15 15
 
16 16
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 	 *
10 10
 	 * @return int The number of processed items.
11 11
 	 */
12
-	public function run( $last_id );
12
+	public function run($last_id);
13 13
 
14 14
 	public function get_total();
15 15
 
Please login to merge, or discard this patch.
src/modules/common/third-party/vendor/autoload.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -3,14 +3,14 @@  discard block
 block discarded – undo
3 3
 // autoload.php @generated by Composer
4 4
 
5 5
 if (PHP_VERSION_ID < 50600) {
6
-    if (!headers_sent()) {
6
+    if ( ! headers_sent()) {
7 7
         header('HTTP/1.1 500 Internal Server Error');
8 8
     }
9 9
     $err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
10
-    if (!ini_get('display_errors')) {
10
+    if ( ! ini_get('display_errors')) {
11 11
         if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
12 12
             fwrite(STDERR, $err);
13
-        } elseif (!headers_sent()) {
13
+        } elseif ( ! headers_sent()) {
14 14
             echo $err;
15 15
         }
16 16
     }
@@ -20,6 +20,6 @@  discard block
 block discarded – undo
20 20
     );
21 21
 }
22 22
 
23
-require_once __DIR__ . '/composer/autoload_real.php';
23
+require_once __DIR__.'/composer/autoload_real.php';
24 24
 
25 25
 return ComposerAutoloaderInitbd04ee84a816dcd5effd91d716ec9608::getLoader();
Please login to merge, or discard this patch.
src/modules/common/third-party/vendor/composer/autoload_static.php 1 patch
Spacing   +267 added lines, -267 removed lines patch added patch discarded remove patch
@@ -6,277 +6,277 @@
 block discarded – undo
6 6
 
7 7
 class ComposerStaticInitbd04ee84a816dcd5effd91d716ec9608
8 8
 {
9
-    public static $classMap = array (
10
-        'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
11
-        'Wordlift\\Modules\\Common\\Attribute' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
12
-        'Wordlift\\Modules\\Common\\JsonException' => __DIR__ . '/..' . '/symfony/polyfill-php73/Resources/stubs/JsonException.php',
13
-        'Wordlift\\Modules\\Common\\McAskill\\Composer\\ExcludeFilePlugin' => __DIR__ . '/..' . '/mcaskill/composer-exclude-files/src/ExcludeFilePlugin.php',
14
-        'Wordlift\\Modules\\Common\\PhpToken' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
15
-        'Wordlift\\Modules\\Common\\Psr\\Container\\ContainerExceptionInterface' => __DIR__ . '/..' . '/psr/container/src/ContainerExceptionInterface.php',
16
-        'Wordlift\\Modules\\Common\\Psr\\Container\\ContainerInterface' => __DIR__ . '/..' . '/psr/container/src/ContainerInterface.php',
17
-        'Wordlift\\Modules\\Common\\Psr\\Container\\NotFoundExceptionInterface' => __DIR__ . '/..' . '/psr/container/src/NotFoundExceptionInterface.php',
18
-        'Wordlift\\Modules\\Common\\Stringable' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Stringable.php',
19
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ConfigCache' => __DIR__ . '/..' . '/symfony/config/ConfigCache.php',
20
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ConfigCacheFactory' => __DIR__ . '/..' . '/symfony/config/ConfigCacheFactory.php',
21
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ConfigCacheFactoryInterface' => __DIR__ . '/..' . '/symfony/config/ConfigCacheFactoryInterface.php',
22
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ConfigCacheInterface' => __DIR__ . '/..' . '/symfony/config/ConfigCacheInterface.php',
23
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\ArrayNode' => __DIR__ . '/..' . '/symfony/config/Definition/ArrayNode.php',
24
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\BaseNode' => __DIR__ . '/..' . '/symfony/config/Definition/BaseNode.php',
25
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\BooleanNode' => __DIR__ . '/..' . '/symfony/config/Definition/BooleanNode.php',
26
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\ArrayNodeDefinition' => __DIR__ . '/..' . '/symfony/config/Definition/Builder/ArrayNodeDefinition.php',
27
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\BooleanNodeDefinition' => __DIR__ . '/..' . '/symfony/config/Definition/Builder/BooleanNodeDefinition.php',
28
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\EnumNodeDefinition' => __DIR__ . '/..' . '/symfony/config/Definition/Builder/EnumNodeDefinition.php',
29
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\ExprBuilder' => __DIR__ . '/..' . '/symfony/config/Definition/Builder/ExprBuilder.php',
30
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\FloatNodeDefinition' => __DIR__ . '/..' . '/symfony/config/Definition/Builder/FloatNodeDefinition.php',
31
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\IntegerNodeDefinition' => __DIR__ . '/..' . '/symfony/config/Definition/Builder/IntegerNodeDefinition.php',
32
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\MergeBuilder' => __DIR__ . '/..' . '/symfony/config/Definition/Builder/MergeBuilder.php',
33
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\NodeBuilder' => __DIR__ . '/..' . '/symfony/config/Definition/Builder/NodeBuilder.php',
34
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\NodeDefinition' => __DIR__ . '/..' . '/symfony/config/Definition/Builder/NodeDefinition.php',
35
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\NodeParentInterface' => __DIR__ . '/..' . '/symfony/config/Definition/Builder/NodeParentInterface.php',
36
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\NormalizationBuilder' => __DIR__ . '/..' . '/symfony/config/Definition/Builder/NormalizationBuilder.php',
37
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\NumericNodeDefinition' => __DIR__ . '/..' . '/symfony/config/Definition/Builder/NumericNodeDefinition.php',
38
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\ParentNodeDefinitionInterface' => __DIR__ . '/..' . '/symfony/config/Definition/Builder/ParentNodeDefinitionInterface.php',
39
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\ScalarNodeDefinition' => __DIR__ . '/..' . '/symfony/config/Definition/Builder/ScalarNodeDefinition.php',
40
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\TreeBuilder' => __DIR__ . '/..' . '/symfony/config/Definition/Builder/TreeBuilder.php',
41
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\ValidationBuilder' => __DIR__ . '/..' . '/symfony/config/Definition/Builder/ValidationBuilder.php',
42
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\VariableNodeDefinition' => __DIR__ . '/..' . '/symfony/config/Definition/Builder/VariableNodeDefinition.php',
43
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\ConfigurationInterface' => __DIR__ . '/..' . '/symfony/config/Definition/ConfigurationInterface.php',
44
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Dumper\\XmlReferenceDumper' => __DIR__ . '/..' . '/symfony/config/Definition/Dumper/XmlReferenceDumper.php',
45
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Dumper\\YamlReferenceDumper' => __DIR__ . '/..' . '/symfony/config/Definition/Dumper/YamlReferenceDumper.php',
46
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\EnumNode' => __DIR__ . '/..' . '/symfony/config/Definition/EnumNode.php',
47
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\DuplicateKeyException' => __DIR__ . '/..' . '/symfony/config/Definition/Exception/DuplicateKeyException.php',
48
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\Exception' => __DIR__ . '/..' . '/symfony/config/Definition/Exception/Exception.php',
49
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\ForbiddenOverwriteException' => __DIR__ . '/..' . '/symfony/config/Definition/Exception/ForbiddenOverwriteException.php',
50
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\InvalidConfigurationException' => __DIR__ . '/..' . '/symfony/config/Definition/Exception/InvalidConfigurationException.php',
51
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\InvalidDefinitionException' => __DIR__ . '/..' . '/symfony/config/Definition/Exception/InvalidDefinitionException.php',
52
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\InvalidTypeException' => __DIR__ . '/..' . '/symfony/config/Definition/Exception/InvalidTypeException.php',
53
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\UnsetKeyException' => __DIR__ . '/..' . '/symfony/config/Definition/Exception/UnsetKeyException.php',
54
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\FloatNode' => __DIR__ . '/..' . '/symfony/config/Definition/FloatNode.php',
55
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\IntegerNode' => __DIR__ . '/..' . '/symfony/config/Definition/IntegerNode.php',
56
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\NodeInterface' => __DIR__ . '/..' . '/symfony/config/Definition/NodeInterface.php',
57
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\NumericNode' => __DIR__ . '/..' . '/symfony/config/Definition/NumericNode.php',
58
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Processor' => __DIR__ . '/..' . '/symfony/config/Definition/Processor.php',
59
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\PrototypeNodeInterface' => __DIR__ . '/..' . '/symfony/config/Definition/PrototypeNodeInterface.php',
60
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\PrototypedArrayNode' => __DIR__ . '/..' . '/symfony/config/Definition/PrototypedArrayNode.php',
61
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\ScalarNode' => __DIR__ . '/..' . '/symfony/config/Definition/ScalarNode.php',
62
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\VariableNode' => __DIR__ . '/..' . '/symfony/config/Definition/VariableNode.php',
63
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\DependencyInjection\\ConfigCachePass' => __DIR__ . '/..' . '/symfony/config/DependencyInjection/ConfigCachePass.php',
64
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Exception\\FileLoaderImportCircularReferenceException' => __DIR__ . '/..' . '/symfony/config/Exception/FileLoaderImportCircularReferenceException.php',
65
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Exception\\FileLoaderLoadException' => __DIR__ . '/..' . '/symfony/config/Exception/FileLoaderLoadException.php',
66
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Exception\\FileLocatorFileNotFoundException' => __DIR__ . '/..' . '/symfony/config/Exception/FileLocatorFileNotFoundException.php',
67
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\FileLocator' => __DIR__ . '/..' . '/symfony/config/FileLocator.php',
68
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\FileLocatorInterface' => __DIR__ . '/..' . '/symfony/config/FileLocatorInterface.php',
69
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\DelegatingLoader' => __DIR__ . '/..' . '/symfony/config/Loader/DelegatingLoader.php',
70
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\FileLoader' => __DIR__ . '/..' . '/symfony/config/Loader/FileLoader.php',
71
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\GlobFileLoader' => __DIR__ . '/..' . '/symfony/config/Loader/GlobFileLoader.php',
72
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\Loader' => __DIR__ . '/..' . '/symfony/config/Loader/Loader.php',
73
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\LoaderInterface' => __DIR__ . '/..' . '/symfony/config/Loader/LoaderInterface.php',
74
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\LoaderResolver' => __DIR__ . '/..' . '/symfony/config/Loader/LoaderResolver.php',
75
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\LoaderResolverInterface' => __DIR__ . '/..' . '/symfony/config/Loader/LoaderResolverInterface.php',
76
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ResourceCheckerConfigCache' => __DIR__ . '/..' . '/symfony/config/ResourceCheckerConfigCache.php',
77
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ResourceCheckerConfigCacheFactory' => __DIR__ . '/..' . '/symfony/config/ResourceCheckerConfigCacheFactory.php',
78
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ResourceCheckerInterface' => __DIR__ . '/..' . '/symfony/config/ResourceCheckerInterface.php',
79
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\ClassExistenceResource' => __DIR__ . '/..' . '/symfony/config/Resource/ClassExistenceResource.php',
80
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\ComposerResource' => __DIR__ . '/..' . '/symfony/config/Resource/ComposerResource.php',
81
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\DirectoryResource' => __DIR__ . '/..' . '/symfony/config/Resource/DirectoryResource.php',
82
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\FileExistenceResource' => __DIR__ . '/..' . '/symfony/config/Resource/FileExistenceResource.php',
83
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\FileResource' => __DIR__ . '/..' . '/symfony/config/Resource/FileResource.php',
84
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\GlobResource' => __DIR__ . '/..' . '/symfony/config/Resource/GlobResource.php',
85
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\ReflectionClassResource' => __DIR__ . '/..' . '/symfony/config/Resource/ReflectionClassResource.php',
86
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\ReflectionMethodHhvmWrapper' => __DIR__ . '/..' . '/symfony/config/Resource/ReflectionClassResource.php',
87
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\ReflectionParameterHhvmWrapper' => __DIR__ . '/..' . '/symfony/config/Resource/ReflectionClassResource.php',
88
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\ResourceInterface' => __DIR__ . '/..' . '/symfony/config/Resource/ResourceInterface.php',
89
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\SelfCheckingResourceChecker' => __DIR__ . '/..' . '/symfony/config/Resource/SelfCheckingResourceChecker.php',
90
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\SelfCheckingResourceInterface' => __DIR__ . '/..' . '/symfony/config/Resource/SelfCheckingResourceInterface.php',
91
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Util\\Exception\\InvalidXmlException' => __DIR__ . '/..' . '/symfony/config/Util/Exception/InvalidXmlException.php',
92
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Util\\Exception\\XmlParsingException' => __DIR__ . '/..' . '/symfony/config/Util/Exception/XmlParsingException.php',
93
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Util\\XmlUtils' => __DIR__ . '/..' . '/symfony/config/Util/XmlUtils.php',
94
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Alias' => __DIR__ . '/..' . '/symfony/dependency-injection/Alias.php',
95
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Argument\\ArgumentInterface' => __DIR__ . '/..' . '/symfony/dependency-injection/Argument/ArgumentInterface.php',
96
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Argument\\BoundArgument' => __DIR__ . '/..' . '/symfony/dependency-injection/Argument/BoundArgument.php',
97
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Argument\\IteratorArgument' => __DIR__ . '/..' . '/symfony/dependency-injection/Argument/IteratorArgument.php',
98
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Argument\\RewindableGenerator' => __DIR__ . '/..' . '/symfony/dependency-injection/Argument/RewindableGenerator.php',
99
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Argument\\ServiceClosureArgument' => __DIR__ . '/..' . '/symfony/dependency-injection/Argument/ServiceClosureArgument.php',
100
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Argument\\TaggedIteratorArgument' => __DIR__ . '/..' . '/symfony/dependency-injection/Argument/TaggedIteratorArgument.php',
101
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ChildDefinition' => __DIR__ . '/..' . '/symfony/dependency-injection/ChildDefinition.php',
102
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\AbstractRecursivePass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/AbstractRecursivePass.php',
103
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\AnalyzeServiceReferencesPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/AnalyzeServiceReferencesPass.php',
104
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\AutoAliasServicePass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/AutoAliasServicePass.php',
105
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\AutowireExceptionPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/AutowireExceptionPass.php',
106
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\AutowirePass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/AutowirePass.php',
107
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\AutowireRequiredMethodsPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/AutowireRequiredMethodsPass.php',
108
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\CheckArgumentsValidityPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/CheckArgumentsValidityPass.php',
109
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\CheckCircularReferencesPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/CheckCircularReferencesPass.php',
110
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\CheckDefinitionValidityPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/CheckDefinitionValidityPass.php',
111
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\CheckExceptionOnInvalidReferenceBehaviorPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/CheckExceptionOnInvalidReferenceBehaviorPass.php',
112
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\CheckReferenceValidityPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/CheckReferenceValidityPass.php',
113
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\Compiler' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/Compiler.php',
114
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\CompilerPassInterface' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/CompilerPassInterface.php',
115
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\DecoratorServicePass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/DecoratorServicePass.php',
116
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\DefinitionErrorExceptionPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/DefinitionErrorExceptionPass.php',
117
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ExtensionCompilerPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/ExtensionCompilerPass.php',
118
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\FactoryReturnTypePass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/FactoryReturnTypePass.php',
119
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\InlineServiceDefinitionsPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/InlineServiceDefinitionsPass.php',
120
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\LoggingFormatter' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/LoggingFormatter.php',
121
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\MergeExtensionConfigurationContainerBuilder' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/MergeExtensionConfigurationPass.php',
122
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\MergeExtensionConfigurationParameterBag' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/MergeExtensionConfigurationPass.php',
123
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\MergeExtensionConfigurationPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/MergeExtensionConfigurationPass.php',
124
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\PassConfig' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/PassConfig.php',
125
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\PriorityTaggedServiceTrait' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/PriorityTaggedServiceTrait.php',
126
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RegisterEnvVarProcessorsPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/RegisterEnvVarProcessorsPass.php',
127
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RegisterServiceSubscribersPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/RegisterServiceSubscribersPass.php',
128
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RemoveAbstractDefinitionsPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/RemoveAbstractDefinitionsPass.php',
129
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RemovePrivateAliasesPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/RemovePrivateAliasesPass.php',
130
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RemoveUnusedDefinitionsPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/RemoveUnusedDefinitionsPass.php',
131
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RepeatablePassInterface' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/RepeatablePassInterface.php',
132
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RepeatedPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/RepeatedPass.php',
133
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ReplaceAliasByActualDefinitionPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/ReplaceAliasByActualDefinitionPass.php',
134
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveBindingsPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/ResolveBindingsPass.php',
135
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveChildDefinitionsPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/ResolveChildDefinitionsPass.php',
136
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveClassPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/ResolveClassPass.php',
137
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveDefinitionTemplatesPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/ResolveDefinitionTemplatesPass.php',
138
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveEnvPlaceholdersPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/ResolveEnvPlaceholdersPass.php',
139
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveFactoryClassPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/ResolveFactoryClassPass.php',
140
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveHotPathPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/ResolveHotPathPass.php',
141
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveInstanceofConditionalsPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/ResolveInstanceofConditionalsPass.php',
142
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveInvalidReferencesPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/ResolveInvalidReferencesPass.php',
143
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveNamedArgumentsPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/ResolveNamedArgumentsPass.php',
144
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveParameterPlaceHoldersPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/ResolveParameterPlaceHoldersPass.php',
145
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolvePrivatesPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/ResolvePrivatesPass.php',
146
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveReferencesToAliasesPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/ResolveReferencesToAliasesPass.php',
147
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveServiceSubscribersPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/ResolveServiceSubscribersPass.php',
148
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveTaggedIteratorArgumentPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/ResolveTaggedIteratorArgumentPass.php',
149
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ServiceLocatorTagPass' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/ServiceLocatorTagPass.php',
150
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ServiceReferenceGraph' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/ServiceReferenceGraph.php',
151
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ServiceReferenceGraphEdge' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/ServiceReferenceGraphEdge.php',
152
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ServiceReferenceGraphNode' => __DIR__ . '/..' . '/symfony/dependency-injection/Compiler/ServiceReferenceGraphNode.php',
153
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Config\\AutowireServiceResource' => __DIR__ . '/..' . '/symfony/dependency-injection/Config/AutowireServiceResource.php',
154
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Config\\ContainerParametersResource' => __DIR__ . '/..' . '/symfony/dependency-injection/Config/ContainerParametersResource.php',
155
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Config\\ContainerParametersResourceChecker' => __DIR__ . '/..' . '/symfony/dependency-injection/Config/ContainerParametersResourceChecker.php',
156
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Container' => __DIR__ . '/..' . '/symfony/dependency-injection/Container.php',
157
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ContainerAwareInterface' => __DIR__ . '/..' . '/symfony/dependency-injection/ContainerAwareInterface.php',
158
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ContainerAwareTrait' => __DIR__ . '/..' . '/symfony/dependency-injection/ContainerAwareTrait.php',
159
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ContainerBuilder' => __DIR__ . '/..' . '/symfony/dependency-injection/ContainerBuilder.php',
160
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ContainerInterface' => __DIR__ . '/..' . '/symfony/dependency-injection/ContainerInterface.php',
161
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Definition' => __DIR__ . '/..' . '/symfony/dependency-injection/Definition.php',
162
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\DefinitionDecorator' => __DIR__ . '/..' . '/symfony/dependency-injection/DefinitionDecorator.php',
163
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Dumper\\Dumper' => __DIR__ . '/..' . '/symfony/dependency-injection/Dumper/Dumper.php',
164
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Dumper\\DumperInterface' => __DIR__ . '/..' . '/symfony/dependency-injection/Dumper/DumperInterface.php',
165
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Dumper\\GraphvizDumper' => __DIR__ . '/..' . '/symfony/dependency-injection/Dumper/GraphvizDumper.php',
166
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Dumper\\PhpDumper' => __DIR__ . '/..' . '/symfony/dependency-injection/Dumper/PhpDumper.php',
167
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Dumper\\XmlDumper' => __DIR__ . '/..' . '/symfony/dependency-injection/Dumper/XmlDumper.php',
168
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Dumper\\YamlDumper' => __DIR__ . '/..' . '/symfony/dependency-injection/Dumper/YamlDumper.php',
169
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\EnvVarProcessor' => __DIR__ . '/..' . '/symfony/dependency-injection/EnvVarProcessor.php',
170
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\EnvVarProcessorInterface' => __DIR__ . '/..' . '/symfony/dependency-injection/EnvVarProcessorInterface.php',
171
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\AutowiringFailedException' => __DIR__ . '/..' . '/symfony/dependency-injection/Exception/AutowiringFailedException.php',
172
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\BadMethodCallException' => __DIR__ . '/..' . '/symfony/dependency-injection/Exception/BadMethodCallException.php',
173
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\EnvNotFoundException' => __DIR__ . '/..' . '/symfony/dependency-injection/Exception/EnvNotFoundException.php',
174
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\EnvParameterException' => __DIR__ . '/..' . '/symfony/dependency-injection/Exception/EnvParameterException.php',
175
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/dependency-injection/Exception/ExceptionInterface.php',
176
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/symfony/dependency-injection/Exception/InvalidArgumentException.php',
177
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\LogicException' => __DIR__ . '/..' . '/symfony/dependency-injection/Exception/LogicException.php',
178
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\OutOfBoundsException' => __DIR__ . '/..' . '/symfony/dependency-injection/Exception/OutOfBoundsException.php',
179
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\ParameterCircularReferenceException' => __DIR__ . '/..' . '/symfony/dependency-injection/Exception/ParameterCircularReferenceException.php',
180
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\ParameterNotFoundException' => __DIR__ . '/..' . '/symfony/dependency-injection/Exception/ParameterNotFoundException.php',
181
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/dependency-injection/Exception/RuntimeException.php',
182
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\ServiceCircularReferenceException' => __DIR__ . '/..' . '/symfony/dependency-injection/Exception/ServiceCircularReferenceException.php',
183
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\ServiceNotFoundException' => __DIR__ . '/..' . '/symfony/dependency-injection/Exception/ServiceNotFoundException.php',
184
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ExpressionLanguage' => __DIR__ . '/..' . '/symfony/dependency-injection/ExpressionLanguage.php',
185
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ExpressionLanguageProvider' => __DIR__ . '/..' . '/symfony/dependency-injection/ExpressionLanguageProvider.php',
186
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Extension\\ConfigurationExtensionInterface' => __DIR__ . '/..' . '/symfony/dependency-injection/Extension/ConfigurationExtensionInterface.php',
187
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Extension\\Extension' => __DIR__ . '/..' . '/symfony/dependency-injection/Extension/Extension.php',
188
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Extension\\ExtensionInterface' => __DIR__ . '/..' . '/symfony/dependency-injection/Extension/ExtensionInterface.php',
189
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Extension\\PrependExtensionInterface' => __DIR__ . '/..' . '/symfony/dependency-injection/Extension/PrependExtensionInterface.php',
190
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\LazyProxy\\Instantiator\\InstantiatorInterface' => __DIR__ . '/..' . '/symfony/dependency-injection/LazyProxy/Instantiator/InstantiatorInterface.php',
191
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\LazyProxy\\Instantiator\\RealServiceInstantiator' => __DIR__ . '/..' . '/symfony/dependency-injection/LazyProxy/Instantiator/RealServiceInstantiator.php',
192
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\LazyProxy\\PhpDumper\\DumperInterface' => __DIR__ . '/..' . '/symfony/dependency-injection/LazyProxy/PhpDumper/DumperInterface.php',
193
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\LazyProxy\\PhpDumper\\NullDumper' => __DIR__ . '/..' . '/symfony/dependency-injection/LazyProxy/PhpDumper/NullDumper.php',
194
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\LazyProxy\\ProxyHelper' => __DIR__ . '/..' . '/symfony/dependency-injection/LazyProxy/ProxyHelper.php',
195
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\ClosureLoader' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/ClosureLoader.php',
196
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\AbstractConfigurator' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/AbstractConfigurator.php',
197
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\AbstractServiceConfigurator' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/AbstractServiceConfigurator.php',
198
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\AliasConfigurator' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/AliasConfigurator.php',
199
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\ContainerConfigurator' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/ContainerConfigurator.php',
200
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\DefaultsConfigurator' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/DefaultsConfigurator.php',
201
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\InlineServiceConfigurator' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/InlineServiceConfigurator.php',
202
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\InstanceofConfigurator' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/InstanceofConfigurator.php',
203
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\ParametersConfigurator' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/ParametersConfigurator.php',
204
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\PrototypeConfigurator' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/PrototypeConfigurator.php',
205
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\ReferenceConfigurator' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/ReferenceConfigurator.php',
206
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\ServiceConfigurator' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/ServiceConfigurator.php',
207
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\ServicesConfigurator' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/ServicesConfigurator.php',
208
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\AbstractTrait' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/Traits/AbstractTrait.php',
209
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\ArgumentTrait' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/Traits/ArgumentTrait.php',
210
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\AutoconfigureTrait' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/Traits/AutoconfigureTrait.php',
211
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\AutowireTrait' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/Traits/AutowireTrait.php',
212
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\BindTrait' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/Traits/BindTrait.php',
213
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\CallTrait' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/Traits/CallTrait.php',
214
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\ClassTrait' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/Traits/ClassTrait.php',
215
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\ConfiguratorTrait' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/Traits/ConfiguratorTrait.php',
216
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\DecorateTrait' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/Traits/DecorateTrait.php',
217
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\DeprecateTrait' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/Traits/DeprecateTrait.php',
218
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\FactoryTrait' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/Traits/FactoryTrait.php',
219
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\FileTrait' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/Traits/FileTrait.php',
220
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\LazyTrait' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/Traits/LazyTrait.php',
221
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\ParentTrait' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/Traits/ParentTrait.php',
222
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\PropertyTrait' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/Traits/PropertyTrait.php',
223
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\PublicTrait' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/Traits/PublicTrait.php',
224
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\ShareTrait' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/Traits/ShareTrait.php',
225
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\SyntheticTrait' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/Traits/SyntheticTrait.php',
226
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\TagTrait' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/Configurator/Traits/TagTrait.php',
227
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\DirectoryLoader' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/DirectoryLoader.php',
228
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\FileLoader' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/FileLoader.php',
229
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\GlobFileLoader' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/GlobFileLoader.php',
230
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\IniFileLoader' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/IniFileLoader.php',
231
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\PhpFileLoader' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/PhpFileLoader.php',
232
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\ProtectedPhpFileLoader' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/PhpFileLoader.php',
233
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\XmlFileLoader' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/XmlFileLoader.php',
234
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader' => __DIR__ . '/..' . '/symfony/dependency-injection/Loader/YamlFileLoader.php',
235
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Parameter' => __DIR__ . '/..' . '/symfony/dependency-injection/Parameter.php',
236
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ParameterBag\\EnvPlaceholderParameterBag' => __DIR__ . '/..' . '/symfony/dependency-injection/ParameterBag/EnvPlaceholderParameterBag.php',
237
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ParameterBag\\FrozenParameterBag' => __DIR__ . '/..' . '/symfony/dependency-injection/ParameterBag/FrozenParameterBag.php',
238
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ParameterBag\\ParameterBag' => __DIR__ . '/..' . '/symfony/dependency-injection/ParameterBag/ParameterBag.php',
239
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ParameterBag\\ParameterBagInterface' => __DIR__ . '/..' . '/symfony/dependency-injection/ParameterBag/ParameterBagInterface.php',
240
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Reference' => __DIR__ . '/..' . '/symfony/dependency-injection/Reference.php',
241
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ResettableContainerInterface' => __DIR__ . '/..' . '/symfony/dependency-injection/ResettableContainerInterface.php',
242
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ServiceLocator' => __DIR__ . '/..' . '/symfony/dependency-injection/ServiceLocator.php',
243
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ServiceSubscriberInterface' => __DIR__ . '/..' . '/symfony/dependency-injection/ServiceSubscriberInterface.php',
244
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\TaggedContainerInterface' => __DIR__ . '/..' . '/symfony/dependency-injection/TaggedContainerInterface.php',
245
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\TypedReference' => __DIR__ . '/..' . '/symfony/dependency-injection/TypedReference.php',
246
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Variable' => __DIR__ . '/..' . '/symfony/dependency-injection/Variable.php',
247
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Filesystem\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/filesystem/Exception/ExceptionInterface.php',
248
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Filesystem\\Exception\\FileNotFoundException' => __DIR__ . '/..' . '/symfony/filesystem/Exception/FileNotFoundException.php',
249
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Filesystem\\Exception\\IOException' => __DIR__ . '/..' . '/symfony/filesystem/Exception/IOException.php',
250
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Filesystem\\Exception\\IOExceptionInterface' => __DIR__ . '/..' . '/symfony/filesystem/Exception/IOExceptionInterface.php',
251
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Filesystem\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/symfony/filesystem/Exception/InvalidArgumentException.php',
252
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Filesystem\\Filesystem' => __DIR__ . '/..' . '/symfony/filesystem/Filesystem.php',
253
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Command\\LintCommand' => __DIR__ . '/..' . '/symfony/yaml/Command/LintCommand.php',
254
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Dumper' => __DIR__ . '/..' . '/symfony/yaml/Dumper.php',
255
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Escaper' => __DIR__ . '/..' . '/symfony/yaml/Escaper.php',
256
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Exception\\DumpException' => __DIR__ . '/..' . '/symfony/yaml/Exception/DumpException.php',
257
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/yaml/Exception/ExceptionInterface.php',
258
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Exception\\ParseException' => __DIR__ . '/..' . '/symfony/yaml/Exception/ParseException.php',
259
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/yaml/Exception/RuntimeException.php',
260
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Inline' => __DIR__ . '/..' . '/symfony/yaml/Inline.php',
261
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Parser' => __DIR__ . '/..' . '/symfony/yaml/Parser.php',
262
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Tag\\TaggedValue' => __DIR__ . '/..' . '/symfony/yaml/Tag/TaggedValue.php',
263
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Unescaper' => __DIR__ . '/..' . '/symfony/yaml/Unescaper.php',
264
-        'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Yaml' => __DIR__ . '/..' . '/symfony/yaml/Yaml.php',
265
-        'Wordlift\\Modules\\Common\\Symfony\\Polyfill\\Ctype\\Ctype' => __DIR__ . '/..' . '/symfony/polyfill-ctype/Ctype.php',
266
-        'Wordlift\\Modules\\Common\\Symfony\\Polyfill\\Mbstring\\Mbstring' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/Mbstring.php',
267
-        'Wordlift\\Modules\\Common\\Symfony\\Polyfill\\Php73\\Php73' => __DIR__ . '/..' . '/symfony/polyfill-php73/Php73.php',
268
-        'Wordlift\\Modules\\Common\\Symfony\\Polyfill\\Php80\\Php80' => __DIR__ . '/..' . '/symfony/polyfill-php80/Php80.php',
269
-        'Wordlift\\Modules\\Common\\Symfony\\Polyfill\\Php80\\PhpToken' => __DIR__ . '/..' . '/symfony/polyfill-php80/PhpToken.php',
270
-        'Wordlift\\Modules\\Common\\UnhandledMatchError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',
271
-        'Wordlift\\Modules\\Common\\ValueError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/ValueError.php',
272
-        'Wordlift\\Modules\\Common\\cweagans\\Composer\\PatchEvent' => __DIR__ . '/..' . '/cweagans/composer-patches/src/PatchEvent.php',
273
-        'Wordlift\\Modules\\Common\\cweagans\\Composer\\PatchEvents' => __DIR__ . '/..' . '/cweagans/composer-patches/src/PatchEvents.php',
274
-        'Wordlift\\Modules\\Common\\cweagans\\Composer\\Patches' => __DIR__ . '/..' . '/cweagans/composer-patches/src/Patches.php',
9
+    public static $classMap = array(
10
+        'Composer\\InstalledVersions' => __DIR__.'/..'.'/composer/InstalledVersions.php',
11
+        'Wordlift\\Modules\\Common\\Attribute' => __DIR__.'/..'.'/symfony/polyfill-php80/Resources/stubs/Attribute.php',
12
+        'Wordlift\\Modules\\Common\\JsonException' => __DIR__.'/..'.'/symfony/polyfill-php73/Resources/stubs/JsonException.php',
13
+        'Wordlift\\Modules\\Common\\McAskill\\Composer\\ExcludeFilePlugin' => __DIR__.'/..'.'/mcaskill/composer-exclude-files/src/ExcludeFilePlugin.php',
14
+        'Wordlift\\Modules\\Common\\PhpToken' => __DIR__.'/..'.'/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
15
+        'Wordlift\\Modules\\Common\\Psr\\Container\\ContainerExceptionInterface' => __DIR__.'/..'.'/psr/container/src/ContainerExceptionInterface.php',
16
+        'Wordlift\\Modules\\Common\\Psr\\Container\\ContainerInterface' => __DIR__.'/..'.'/psr/container/src/ContainerInterface.php',
17
+        'Wordlift\\Modules\\Common\\Psr\\Container\\NotFoundExceptionInterface' => __DIR__.'/..'.'/psr/container/src/NotFoundExceptionInterface.php',
18
+        'Wordlift\\Modules\\Common\\Stringable' => __DIR__.'/..'.'/symfony/polyfill-php80/Resources/stubs/Stringable.php',
19
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ConfigCache' => __DIR__.'/..'.'/symfony/config/ConfigCache.php',
20
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ConfigCacheFactory' => __DIR__.'/..'.'/symfony/config/ConfigCacheFactory.php',
21
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ConfigCacheFactoryInterface' => __DIR__.'/..'.'/symfony/config/ConfigCacheFactoryInterface.php',
22
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ConfigCacheInterface' => __DIR__.'/..'.'/symfony/config/ConfigCacheInterface.php',
23
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\ArrayNode' => __DIR__.'/..'.'/symfony/config/Definition/ArrayNode.php',
24
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\BaseNode' => __DIR__.'/..'.'/symfony/config/Definition/BaseNode.php',
25
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\BooleanNode' => __DIR__.'/..'.'/symfony/config/Definition/BooleanNode.php',
26
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\ArrayNodeDefinition' => __DIR__.'/..'.'/symfony/config/Definition/Builder/ArrayNodeDefinition.php',
27
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\BooleanNodeDefinition' => __DIR__.'/..'.'/symfony/config/Definition/Builder/BooleanNodeDefinition.php',
28
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\EnumNodeDefinition' => __DIR__.'/..'.'/symfony/config/Definition/Builder/EnumNodeDefinition.php',
29
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\ExprBuilder' => __DIR__.'/..'.'/symfony/config/Definition/Builder/ExprBuilder.php',
30
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\FloatNodeDefinition' => __DIR__.'/..'.'/symfony/config/Definition/Builder/FloatNodeDefinition.php',
31
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\IntegerNodeDefinition' => __DIR__.'/..'.'/symfony/config/Definition/Builder/IntegerNodeDefinition.php',
32
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\MergeBuilder' => __DIR__.'/..'.'/symfony/config/Definition/Builder/MergeBuilder.php',
33
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\NodeBuilder' => __DIR__.'/..'.'/symfony/config/Definition/Builder/NodeBuilder.php',
34
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\NodeDefinition' => __DIR__.'/..'.'/symfony/config/Definition/Builder/NodeDefinition.php',
35
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\NodeParentInterface' => __DIR__.'/..'.'/symfony/config/Definition/Builder/NodeParentInterface.php',
36
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\NormalizationBuilder' => __DIR__.'/..'.'/symfony/config/Definition/Builder/NormalizationBuilder.php',
37
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\NumericNodeDefinition' => __DIR__.'/..'.'/symfony/config/Definition/Builder/NumericNodeDefinition.php',
38
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\ParentNodeDefinitionInterface' => __DIR__.'/..'.'/symfony/config/Definition/Builder/ParentNodeDefinitionInterface.php',
39
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\ScalarNodeDefinition' => __DIR__.'/..'.'/symfony/config/Definition/Builder/ScalarNodeDefinition.php',
40
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\TreeBuilder' => __DIR__.'/..'.'/symfony/config/Definition/Builder/TreeBuilder.php',
41
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\ValidationBuilder' => __DIR__.'/..'.'/symfony/config/Definition/Builder/ValidationBuilder.php',
42
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Builder\\VariableNodeDefinition' => __DIR__.'/..'.'/symfony/config/Definition/Builder/VariableNodeDefinition.php',
43
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\ConfigurationInterface' => __DIR__.'/..'.'/symfony/config/Definition/ConfigurationInterface.php',
44
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Dumper\\XmlReferenceDumper' => __DIR__.'/..'.'/symfony/config/Definition/Dumper/XmlReferenceDumper.php',
45
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Dumper\\YamlReferenceDumper' => __DIR__.'/..'.'/symfony/config/Definition/Dumper/YamlReferenceDumper.php',
46
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\EnumNode' => __DIR__.'/..'.'/symfony/config/Definition/EnumNode.php',
47
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\DuplicateKeyException' => __DIR__.'/..'.'/symfony/config/Definition/Exception/DuplicateKeyException.php',
48
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\Exception' => __DIR__.'/..'.'/symfony/config/Definition/Exception/Exception.php',
49
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\ForbiddenOverwriteException' => __DIR__.'/..'.'/symfony/config/Definition/Exception/ForbiddenOverwriteException.php',
50
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\InvalidConfigurationException' => __DIR__.'/..'.'/symfony/config/Definition/Exception/InvalidConfigurationException.php',
51
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\InvalidDefinitionException' => __DIR__.'/..'.'/symfony/config/Definition/Exception/InvalidDefinitionException.php',
52
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\InvalidTypeException' => __DIR__.'/..'.'/symfony/config/Definition/Exception/InvalidTypeException.php',
53
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Exception\\UnsetKeyException' => __DIR__.'/..'.'/symfony/config/Definition/Exception/UnsetKeyException.php',
54
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\FloatNode' => __DIR__.'/..'.'/symfony/config/Definition/FloatNode.php',
55
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\IntegerNode' => __DIR__.'/..'.'/symfony/config/Definition/IntegerNode.php',
56
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\NodeInterface' => __DIR__.'/..'.'/symfony/config/Definition/NodeInterface.php',
57
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\NumericNode' => __DIR__.'/..'.'/symfony/config/Definition/NumericNode.php',
58
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\Processor' => __DIR__.'/..'.'/symfony/config/Definition/Processor.php',
59
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\PrototypeNodeInterface' => __DIR__.'/..'.'/symfony/config/Definition/PrototypeNodeInterface.php',
60
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\PrototypedArrayNode' => __DIR__.'/..'.'/symfony/config/Definition/PrototypedArrayNode.php',
61
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\ScalarNode' => __DIR__.'/..'.'/symfony/config/Definition/ScalarNode.php',
62
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Definition\\VariableNode' => __DIR__.'/..'.'/symfony/config/Definition/VariableNode.php',
63
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\DependencyInjection\\ConfigCachePass' => __DIR__.'/..'.'/symfony/config/DependencyInjection/ConfigCachePass.php',
64
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Exception\\FileLoaderImportCircularReferenceException' => __DIR__.'/..'.'/symfony/config/Exception/FileLoaderImportCircularReferenceException.php',
65
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Exception\\FileLoaderLoadException' => __DIR__.'/..'.'/symfony/config/Exception/FileLoaderLoadException.php',
66
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Exception\\FileLocatorFileNotFoundException' => __DIR__.'/..'.'/symfony/config/Exception/FileLocatorFileNotFoundException.php',
67
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\FileLocator' => __DIR__.'/..'.'/symfony/config/FileLocator.php',
68
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\FileLocatorInterface' => __DIR__.'/..'.'/symfony/config/FileLocatorInterface.php',
69
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\DelegatingLoader' => __DIR__.'/..'.'/symfony/config/Loader/DelegatingLoader.php',
70
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\FileLoader' => __DIR__.'/..'.'/symfony/config/Loader/FileLoader.php',
71
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\GlobFileLoader' => __DIR__.'/..'.'/symfony/config/Loader/GlobFileLoader.php',
72
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\Loader' => __DIR__.'/..'.'/symfony/config/Loader/Loader.php',
73
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\LoaderInterface' => __DIR__.'/..'.'/symfony/config/Loader/LoaderInterface.php',
74
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\LoaderResolver' => __DIR__.'/..'.'/symfony/config/Loader/LoaderResolver.php',
75
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Loader\\LoaderResolverInterface' => __DIR__.'/..'.'/symfony/config/Loader/LoaderResolverInterface.php',
76
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ResourceCheckerConfigCache' => __DIR__.'/..'.'/symfony/config/ResourceCheckerConfigCache.php',
77
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ResourceCheckerConfigCacheFactory' => __DIR__.'/..'.'/symfony/config/ResourceCheckerConfigCacheFactory.php',
78
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\ResourceCheckerInterface' => __DIR__.'/..'.'/symfony/config/ResourceCheckerInterface.php',
79
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\ClassExistenceResource' => __DIR__.'/..'.'/symfony/config/Resource/ClassExistenceResource.php',
80
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\ComposerResource' => __DIR__.'/..'.'/symfony/config/Resource/ComposerResource.php',
81
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\DirectoryResource' => __DIR__.'/..'.'/symfony/config/Resource/DirectoryResource.php',
82
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\FileExistenceResource' => __DIR__.'/..'.'/symfony/config/Resource/FileExistenceResource.php',
83
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\FileResource' => __DIR__.'/..'.'/symfony/config/Resource/FileResource.php',
84
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\GlobResource' => __DIR__.'/..'.'/symfony/config/Resource/GlobResource.php',
85
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\ReflectionClassResource' => __DIR__.'/..'.'/symfony/config/Resource/ReflectionClassResource.php',
86
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\ReflectionMethodHhvmWrapper' => __DIR__.'/..'.'/symfony/config/Resource/ReflectionClassResource.php',
87
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\ReflectionParameterHhvmWrapper' => __DIR__.'/..'.'/symfony/config/Resource/ReflectionClassResource.php',
88
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\ResourceInterface' => __DIR__.'/..'.'/symfony/config/Resource/ResourceInterface.php',
89
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\SelfCheckingResourceChecker' => __DIR__.'/..'.'/symfony/config/Resource/SelfCheckingResourceChecker.php',
90
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Resource\\SelfCheckingResourceInterface' => __DIR__.'/..'.'/symfony/config/Resource/SelfCheckingResourceInterface.php',
91
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Util\\Exception\\InvalidXmlException' => __DIR__.'/..'.'/symfony/config/Util/Exception/InvalidXmlException.php',
92
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Util\\Exception\\XmlParsingException' => __DIR__.'/..'.'/symfony/config/Util/Exception/XmlParsingException.php',
93
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Config\\Util\\XmlUtils' => __DIR__.'/..'.'/symfony/config/Util/XmlUtils.php',
94
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Alias' => __DIR__.'/..'.'/symfony/dependency-injection/Alias.php',
95
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Argument\\ArgumentInterface' => __DIR__.'/..'.'/symfony/dependency-injection/Argument/ArgumentInterface.php',
96
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Argument\\BoundArgument' => __DIR__.'/..'.'/symfony/dependency-injection/Argument/BoundArgument.php',
97
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Argument\\IteratorArgument' => __DIR__.'/..'.'/symfony/dependency-injection/Argument/IteratorArgument.php',
98
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Argument\\RewindableGenerator' => __DIR__.'/..'.'/symfony/dependency-injection/Argument/RewindableGenerator.php',
99
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Argument\\ServiceClosureArgument' => __DIR__.'/..'.'/symfony/dependency-injection/Argument/ServiceClosureArgument.php',
100
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Argument\\TaggedIteratorArgument' => __DIR__.'/..'.'/symfony/dependency-injection/Argument/TaggedIteratorArgument.php',
101
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ChildDefinition' => __DIR__.'/..'.'/symfony/dependency-injection/ChildDefinition.php',
102
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\AbstractRecursivePass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/AbstractRecursivePass.php',
103
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\AnalyzeServiceReferencesPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/AnalyzeServiceReferencesPass.php',
104
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\AutoAliasServicePass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/AutoAliasServicePass.php',
105
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\AutowireExceptionPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/AutowireExceptionPass.php',
106
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\AutowirePass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/AutowirePass.php',
107
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\AutowireRequiredMethodsPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/AutowireRequiredMethodsPass.php',
108
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\CheckArgumentsValidityPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/CheckArgumentsValidityPass.php',
109
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\CheckCircularReferencesPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/CheckCircularReferencesPass.php',
110
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\CheckDefinitionValidityPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/CheckDefinitionValidityPass.php',
111
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\CheckExceptionOnInvalidReferenceBehaviorPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/CheckExceptionOnInvalidReferenceBehaviorPass.php',
112
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\CheckReferenceValidityPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/CheckReferenceValidityPass.php',
113
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\Compiler' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/Compiler.php',
114
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\CompilerPassInterface' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/CompilerPassInterface.php',
115
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\DecoratorServicePass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/DecoratorServicePass.php',
116
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\DefinitionErrorExceptionPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/DefinitionErrorExceptionPass.php',
117
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ExtensionCompilerPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/ExtensionCompilerPass.php',
118
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\FactoryReturnTypePass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/FactoryReturnTypePass.php',
119
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\InlineServiceDefinitionsPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/InlineServiceDefinitionsPass.php',
120
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\LoggingFormatter' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/LoggingFormatter.php',
121
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\MergeExtensionConfigurationContainerBuilder' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/MergeExtensionConfigurationPass.php',
122
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\MergeExtensionConfigurationParameterBag' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/MergeExtensionConfigurationPass.php',
123
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\MergeExtensionConfigurationPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/MergeExtensionConfigurationPass.php',
124
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\PassConfig' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/PassConfig.php',
125
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\PriorityTaggedServiceTrait' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/PriorityTaggedServiceTrait.php',
126
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RegisterEnvVarProcessorsPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/RegisterEnvVarProcessorsPass.php',
127
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RegisterServiceSubscribersPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/RegisterServiceSubscribersPass.php',
128
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RemoveAbstractDefinitionsPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/RemoveAbstractDefinitionsPass.php',
129
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RemovePrivateAliasesPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/RemovePrivateAliasesPass.php',
130
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RemoveUnusedDefinitionsPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/RemoveUnusedDefinitionsPass.php',
131
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RepeatablePassInterface' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/RepeatablePassInterface.php',
132
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\RepeatedPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/RepeatedPass.php',
133
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ReplaceAliasByActualDefinitionPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/ReplaceAliasByActualDefinitionPass.php',
134
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveBindingsPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/ResolveBindingsPass.php',
135
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveChildDefinitionsPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/ResolveChildDefinitionsPass.php',
136
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveClassPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/ResolveClassPass.php',
137
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveDefinitionTemplatesPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/ResolveDefinitionTemplatesPass.php',
138
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveEnvPlaceholdersPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/ResolveEnvPlaceholdersPass.php',
139
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveFactoryClassPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/ResolveFactoryClassPass.php',
140
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveHotPathPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/ResolveHotPathPass.php',
141
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveInstanceofConditionalsPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/ResolveInstanceofConditionalsPass.php',
142
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveInvalidReferencesPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/ResolveInvalidReferencesPass.php',
143
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveNamedArgumentsPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/ResolveNamedArgumentsPass.php',
144
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveParameterPlaceHoldersPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/ResolveParameterPlaceHoldersPass.php',
145
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolvePrivatesPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/ResolvePrivatesPass.php',
146
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveReferencesToAliasesPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/ResolveReferencesToAliasesPass.php',
147
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveServiceSubscribersPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/ResolveServiceSubscribersPass.php',
148
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ResolveTaggedIteratorArgumentPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/ResolveTaggedIteratorArgumentPass.php',
149
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ServiceLocatorTagPass' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/ServiceLocatorTagPass.php',
150
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ServiceReferenceGraph' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/ServiceReferenceGraph.php',
151
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ServiceReferenceGraphEdge' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/ServiceReferenceGraphEdge.php',
152
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Compiler\\ServiceReferenceGraphNode' => __DIR__.'/..'.'/symfony/dependency-injection/Compiler/ServiceReferenceGraphNode.php',
153
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Config\\AutowireServiceResource' => __DIR__.'/..'.'/symfony/dependency-injection/Config/AutowireServiceResource.php',
154
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Config\\ContainerParametersResource' => __DIR__.'/..'.'/symfony/dependency-injection/Config/ContainerParametersResource.php',
155
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Config\\ContainerParametersResourceChecker' => __DIR__.'/..'.'/symfony/dependency-injection/Config/ContainerParametersResourceChecker.php',
156
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Container' => __DIR__.'/..'.'/symfony/dependency-injection/Container.php',
157
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ContainerAwareInterface' => __DIR__.'/..'.'/symfony/dependency-injection/ContainerAwareInterface.php',
158
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ContainerAwareTrait' => __DIR__.'/..'.'/symfony/dependency-injection/ContainerAwareTrait.php',
159
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ContainerBuilder' => __DIR__.'/..'.'/symfony/dependency-injection/ContainerBuilder.php',
160
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ContainerInterface' => __DIR__.'/..'.'/symfony/dependency-injection/ContainerInterface.php',
161
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Definition' => __DIR__.'/..'.'/symfony/dependency-injection/Definition.php',
162
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\DefinitionDecorator' => __DIR__.'/..'.'/symfony/dependency-injection/DefinitionDecorator.php',
163
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Dumper\\Dumper' => __DIR__.'/..'.'/symfony/dependency-injection/Dumper/Dumper.php',
164
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Dumper\\DumperInterface' => __DIR__.'/..'.'/symfony/dependency-injection/Dumper/DumperInterface.php',
165
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Dumper\\GraphvizDumper' => __DIR__.'/..'.'/symfony/dependency-injection/Dumper/GraphvizDumper.php',
166
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Dumper\\PhpDumper' => __DIR__.'/..'.'/symfony/dependency-injection/Dumper/PhpDumper.php',
167
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Dumper\\XmlDumper' => __DIR__.'/..'.'/symfony/dependency-injection/Dumper/XmlDumper.php',
168
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Dumper\\YamlDumper' => __DIR__.'/..'.'/symfony/dependency-injection/Dumper/YamlDumper.php',
169
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\EnvVarProcessor' => __DIR__.'/..'.'/symfony/dependency-injection/EnvVarProcessor.php',
170
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\EnvVarProcessorInterface' => __DIR__.'/..'.'/symfony/dependency-injection/EnvVarProcessorInterface.php',
171
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\AutowiringFailedException' => __DIR__.'/..'.'/symfony/dependency-injection/Exception/AutowiringFailedException.php',
172
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\BadMethodCallException' => __DIR__.'/..'.'/symfony/dependency-injection/Exception/BadMethodCallException.php',
173
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\EnvNotFoundException' => __DIR__.'/..'.'/symfony/dependency-injection/Exception/EnvNotFoundException.php',
174
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\EnvParameterException' => __DIR__.'/..'.'/symfony/dependency-injection/Exception/EnvParameterException.php',
175
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\ExceptionInterface' => __DIR__.'/..'.'/symfony/dependency-injection/Exception/ExceptionInterface.php',
176
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\InvalidArgumentException' => __DIR__.'/..'.'/symfony/dependency-injection/Exception/InvalidArgumentException.php',
177
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\LogicException' => __DIR__.'/..'.'/symfony/dependency-injection/Exception/LogicException.php',
178
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\OutOfBoundsException' => __DIR__.'/..'.'/symfony/dependency-injection/Exception/OutOfBoundsException.php',
179
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\ParameterCircularReferenceException' => __DIR__.'/..'.'/symfony/dependency-injection/Exception/ParameterCircularReferenceException.php',
180
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\ParameterNotFoundException' => __DIR__.'/..'.'/symfony/dependency-injection/Exception/ParameterNotFoundException.php',
181
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\RuntimeException' => __DIR__.'/..'.'/symfony/dependency-injection/Exception/RuntimeException.php',
182
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\ServiceCircularReferenceException' => __DIR__.'/..'.'/symfony/dependency-injection/Exception/ServiceCircularReferenceException.php',
183
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Exception\\ServiceNotFoundException' => __DIR__.'/..'.'/symfony/dependency-injection/Exception/ServiceNotFoundException.php',
184
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ExpressionLanguage' => __DIR__.'/..'.'/symfony/dependency-injection/ExpressionLanguage.php',
185
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ExpressionLanguageProvider' => __DIR__.'/..'.'/symfony/dependency-injection/ExpressionLanguageProvider.php',
186
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Extension\\ConfigurationExtensionInterface' => __DIR__.'/..'.'/symfony/dependency-injection/Extension/ConfigurationExtensionInterface.php',
187
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Extension\\Extension' => __DIR__.'/..'.'/symfony/dependency-injection/Extension/Extension.php',
188
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Extension\\ExtensionInterface' => __DIR__.'/..'.'/symfony/dependency-injection/Extension/ExtensionInterface.php',
189
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Extension\\PrependExtensionInterface' => __DIR__.'/..'.'/symfony/dependency-injection/Extension/PrependExtensionInterface.php',
190
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\LazyProxy\\Instantiator\\InstantiatorInterface' => __DIR__.'/..'.'/symfony/dependency-injection/LazyProxy/Instantiator/InstantiatorInterface.php',
191
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\LazyProxy\\Instantiator\\RealServiceInstantiator' => __DIR__.'/..'.'/symfony/dependency-injection/LazyProxy/Instantiator/RealServiceInstantiator.php',
192
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\LazyProxy\\PhpDumper\\DumperInterface' => __DIR__.'/..'.'/symfony/dependency-injection/LazyProxy/PhpDumper/DumperInterface.php',
193
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\LazyProxy\\PhpDumper\\NullDumper' => __DIR__.'/..'.'/symfony/dependency-injection/LazyProxy/PhpDumper/NullDumper.php',
194
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\LazyProxy\\ProxyHelper' => __DIR__.'/..'.'/symfony/dependency-injection/LazyProxy/ProxyHelper.php',
195
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\ClosureLoader' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/ClosureLoader.php',
196
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\AbstractConfigurator' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/AbstractConfigurator.php',
197
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\AbstractServiceConfigurator' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/AbstractServiceConfigurator.php',
198
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\AliasConfigurator' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/AliasConfigurator.php',
199
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\ContainerConfigurator' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/ContainerConfigurator.php',
200
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\DefaultsConfigurator' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/DefaultsConfigurator.php',
201
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\InlineServiceConfigurator' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/InlineServiceConfigurator.php',
202
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\InstanceofConfigurator' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/InstanceofConfigurator.php',
203
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\ParametersConfigurator' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/ParametersConfigurator.php',
204
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\PrototypeConfigurator' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/PrototypeConfigurator.php',
205
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\ReferenceConfigurator' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/ReferenceConfigurator.php',
206
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\ServiceConfigurator' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/ServiceConfigurator.php',
207
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\ServicesConfigurator' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/ServicesConfigurator.php',
208
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\AbstractTrait' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/Traits/AbstractTrait.php',
209
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\ArgumentTrait' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/Traits/ArgumentTrait.php',
210
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\AutoconfigureTrait' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/Traits/AutoconfigureTrait.php',
211
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\AutowireTrait' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/Traits/AutowireTrait.php',
212
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\BindTrait' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/Traits/BindTrait.php',
213
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\CallTrait' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/Traits/CallTrait.php',
214
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\ClassTrait' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/Traits/ClassTrait.php',
215
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\ConfiguratorTrait' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/Traits/ConfiguratorTrait.php',
216
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\DecorateTrait' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/Traits/DecorateTrait.php',
217
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\DeprecateTrait' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/Traits/DeprecateTrait.php',
218
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\FactoryTrait' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/Traits/FactoryTrait.php',
219
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\FileTrait' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/Traits/FileTrait.php',
220
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\LazyTrait' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/Traits/LazyTrait.php',
221
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\ParentTrait' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/Traits/ParentTrait.php',
222
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\PropertyTrait' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/Traits/PropertyTrait.php',
223
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\PublicTrait' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/Traits/PublicTrait.php',
224
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\ShareTrait' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/Traits/ShareTrait.php',
225
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\SyntheticTrait' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/Traits/SyntheticTrait.php',
226
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\TagTrait' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/Configurator/Traits/TagTrait.php',
227
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\DirectoryLoader' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/DirectoryLoader.php',
228
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\FileLoader' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/FileLoader.php',
229
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\GlobFileLoader' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/GlobFileLoader.php',
230
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\IniFileLoader' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/IniFileLoader.php',
231
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\PhpFileLoader' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/PhpFileLoader.php',
232
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\ProtectedPhpFileLoader' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/PhpFileLoader.php',
233
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\XmlFileLoader' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/XmlFileLoader.php',
234
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader' => __DIR__.'/..'.'/symfony/dependency-injection/Loader/YamlFileLoader.php',
235
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Parameter' => __DIR__.'/..'.'/symfony/dependency-injection/Parameter.php',
236
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ParameterBag\\EnvPlaceholderParameterBag' => __DIR__.'/..'.'/symfony/dependency-injection/ParameterBag/EnvPlaceholderParameterBag.php',
237
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ParameterBag\\FrozenParameterBag' => __DIR__.'/..'.'/symfony/dependency-injection/ParameterBag/FrozenParameterBag.php',
238
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ParameterBag\\ParameterBag' => __DIR__.'/..'.'/symfony/dependency-injection/ParameterBag/ParameterBag.php',
239
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ParameterBag\\ParameterBagInterface' => __DIR__.'/..'.'/symfony/dependency-injection/ParameterBag/ParameterBagInterface.php',
240
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Reference' => __DIR__.'/..'.'/symfony/dependency-injection/Reference.php',
241
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ResettableContainerInterface' => __DIR__.'/..'.'/symfony/dependency-injection/ResettableContainerInterface.php',
242
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ServiceLocator' => __DIR__.'/..'.'/symfony/dependency-injection/ServiceLocator.php',
243
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\ServiceSubscriberInterface' => __DIR__.'/..'.'/symfony/dependency-injection/ServiceSubscriberInterface.php',
244
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\TaggedContainerInterface' => __DIR__.'/..'.'/symfony/dependency-injection/TaggedContainerInterface.php',
245
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\TypedReference' => __DIR__.'/..'.'/symfony/dependency-injection/TypedReference.php',
246
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\DependencyInjection\\Variable' => __DIR__.'/..'.'/symfony/dependency-injection/Variable.php',
247
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Filesystem\\Exception\\ExceptionInterface' => __DIR__.'/..'.'/symfony/filesystem/Exception/ExceptionInterface.php',
248
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Filesystem\\Exception\\FileNotFoundException' => __DIR__.'/..'.'/symfony/filesystem/Exception/FileNotFoundException.php',
249
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Filesystem\\Exception\\IOException' => __DIR__.'/..'.'/symfony/filesystem/Exception/IOException.php',
250
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Filesystem\\Exception\\IOExceptionInterface' => __DIR__.'/..'.'/symfony/filesystem/Exception/IOExceptionInterface.php',
251
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Filesystem\\Exception\\InvalidArgumentException' => __DIR__.'/..'.'/symfony/filesystem/Exception/InvalidArgumentException.php',
252
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Filesystem\\Filesystem' => __DIR__.'/..'.'/symfony/filesystem/Filesystem.php',
253
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Command\\LintCommand' => __DIR__.'/..'.'/symfony/yaml/Command/LintCommand.php',
254
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Dumper' => __DIR__.'/..'.'/symfony/yaml/Dumper.php',
255
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Escaper' => __DIR__.'/..'.'/symfony/yaml/Escaper.php',
256
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Exception\\DumpException' => __DIR__.'/..'.'/symfony/yaml/Exception/DumpException.php',
257
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Exception\\ExceptionInterface' => __DIR__.'/..'.'/symfony/yaml/Exception/ExceptionInterface.php',
258
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Exception\\ParseException' => __DIR__.'/..'.'/symfony/yaml/Exception/ParseException.php',
259
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Exception\\RuntimeException' => __DIR__.'/..'.'/symfony/yaml/Exception/RuntimeException.php',
260
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Inline' => __DIR__.'/..'.'/symfony/yaml/Inline.php',
261
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Parser' => __DIR__.'/..'.'/symfony/yaml/Parser.php',
262
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Tag\\TaggedValue' => __DIR__.'/..'.'/symfony/yaml/Tag/TaggedValue.php',
263
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Unescaper' => __DIR__.'/..'.'/symfony/yaml/Unescaper.php',
264
+        'Wordlift\\Modules\\Common\\Symfony\\Component\\Yaml\\Yaml' => __DIR__.'/..'.'/symfony/yaml/Yaml.php',
265
+        'Wordlift\\Modules\\Common\\Symfony\\Polyfill\\Ctype\\Ctype' => __DIR__.'/..'.'/symfony/polyfill-ctype/Ctype.php',
266
+        'Wordlift\\Modules\\Common\\Symfony\\Polyfill\\Mbstring\\Mbstring' => __DIR__.'/..'.'/symfony/polyfill-mbstring/Mbstring.php',
267
+        'Wordlift\\Modules\\Common\\Symfony\\Polyfill\\Php73\\Php73' => __DIR__.'/..'.'/symfony/polyfill-php73/Php73.php',
268
+        'Wordlift\\Modules\\Common\\Symfony\\Polyfill\\Php80\\Php80' => __DIR__.'/..'.'/symfony/polyfill-php80/Php80.php',
269
+        'Wordlift\\Modules\\Common\\Symfony\\Polyfill\\Php80\\PhpToken' => __DIR__.'/..'.'/symfony/polyfill-php80/PhpToken.php',
270
+        'Wordlift\\Modules\\Common\\UnhandledMatchError' => __DIR__.'/..'.'/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',
271
+        'Wordlift\\Modules\\Common\\ValueError' => __DIR__.'/..'.'/symfony/polyfill-php80/Resources/stubs/ValueError.php',
272
+        'Wordlift\\Modules\\Common\\cweagans\\Composer\\PatchEvent' => __DIR__.'/..'.'/cweagans/composer-patches/src/PatchEvent.php',
273
+        'Wordlift\\Modules\\Common\\cweagans\\Composer\\PatchEvents' => __DIR__.'/..'.'/cweagans/composer-patches/src/PatchEvents.php',
274
+        'Wordlift\\Modules\\Common\\cweagans\\Composer\\Patches' => __DIR__.'/..'.'/cweagans/composer-patches/src/Patches.php',
275 275
     );
276 276
 
277 277
     public static function getInitializer(ClassLoader $loader)
278 278
     {
279
-        return \Closure::bind(function () use ($loader) {
279
+        return \Closure::bind(function() use ($loader) {
280 280
             $loader->classMap = ComposerStaticInitbd04ee84a816dcd5effd91d716ec9608::$classMap;
281 281
 
282 282
         }, null, ClassLoader::class);
Please login to merge, or discard this patch.
src/modules/common/third-party/vendor/composer/autoload_real.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
     public static function loadClassLoader($class)
10 10
     {
11 11
         if ('Wordlift_Modules_Common_Composer\Autoload\ClassLoader' === $class) {
12
-            require __DIR__ . '/ClassLoader.php';
12
+            require __DIR__.'/ClassLoader.php';
13 13
         }
14 14
     }
15 15
 
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
         self::$loader = $loader = new \Wordlift_Modules_Common_Composer\Autoload\ClassLoader(\dirname(__DIR__));
27 27
         spl_autoload_unregister(array('ComposerAutoloaderInitbd04ee84a816dcd5effd91d716ec9608', 'loadClassLoader'));
28 28
 
29
-        require __DIR__ . '/autoload_static.php';
29
+        require __DIR__.'/autoload_static.php';
30 30
         call_user_func(\Wordlift_Modules_Common_Composer\Autoload\ComposerStaticInitbd04ee84a816dcd5effd91d716ec9608::getInitializer($loader));
31 31
 
32 32
         $loader->setClassMapAuthoritative(true);
Please login to merge, or discard this patch.
src/install/class-wordlift-install-3-42-0.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-require_once ABSPATH . 'wp-admin/includes/upgrade.php';
3
+require_once ABSPATH.'wp-admin/includes/upgrade.php';
4 4
 
5 5
 /**
6 6
  * Create a daily schedule for WLP for existing installs.
Please login to merge, or discard this patch.
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -9,22 +9,22 @@
 block discarded – undo
9 9
  */
10 10
 class Wordlift_Install_3_42_0 extends Wordlift_Install {
11 11
 
12
-	/**
13
-	 * {@inheritdoc}
14
-	 */
15
-	protected static $version = '3.42.0';
12
+    /**
13
+     * {@inheritdoc}
14
+     */
15
+    protected static $version = '3.42.0';
16 16
 
17
-	public function install() {
17
+    public function install() {
18 18
 
19
-		global $wpdb;
19
+        global $wpdb;
20 20
 
21
-		$wpdb->query(
22
-			"
21
+        $wpdb->query(
22
+            "
23 23
 			UPDATE {$wpdb->prefix}wl_entities
24 24
 			SET about_jsonld = NULL
25 25
 			WHERE length( about_jsonld ) <= 2
26 26
 		"
27
-		);
27
+        );
28 28
 
29
-	}
29
+    }
30 30
 }
Please login to merge, or discard this patch.
src/includes/intf-wordlift-post-converter.php 2 patches
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -19,19 +19,19 @@
 block discarded – undo
19 19
  */
20 20
 interface Wordlift_Post_Converter {
21 21
 
22
-	/**
23
-	 * Convert the specified post id.
24
-	 *
25
-	 * @param int                 $post_id The post id.
26
-	 * @param array               $references An array of posts referenced by the specified post.
27
-	 * @param array               $references_infos
28
-	 * @param Relations_Interface $relations The relations
29
-	 *
30
-	 * @return mixed The conversion result.
31
-	 * @since 3.42.1 $reference_objects argument added.
32
-	 * @since 3.16.0 $references argument added.
33
-	 * @since 3.10.0
34
-	 */
35
-	public function convert( $post_id, &$references = array(), &$references_infos = array(), $relations = null );
22
+    /**
23
+     * Convert the specified post id.
24
+     *
25
+     * @param int                 $post_id The post id.
26
+     * @param array               $references An array of posts referenced by the specified post.
27
+     * @param array               $references_infos
28
+     * @param Relations_Interface $relations The relations
29
+     *
30
+     * @return mixed The conversion result.
31
+     * @since 3.42.1 $reference_objects argument added.
32
+     * @since 3.16.0 $references argument added.
33
+     * @since 3.10.0
34
+     */
35
+    public function convert( $post_id, &$references = array(), &$references_infos = array(), $relations = null );
36 36
 
37 37
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,6 +32,6 @@
 block discarded – undo
32 32
 	 * @since 3.16.0 $references argument added.
33 33
 	 * @since 3.10.0
34 34
 	 */
35
-	public function convert( $post_id, &$references = array(), &$references_infos = array(), $relations = null );
35
+	public function convert($post_id, &$references = array(), &$references_infos = array(), $relations = null);
36 36
 
37 37
 }
Please login to merge, or discard this patch.