This file is indexed.

/usr/share/php/Symfony/Component/Security/autoload.php is in php-symfony-security 2.7.10-0ubuntu2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
<?php

// require_once 'Symfony/Component/EventDispatcher/autoload.php'; (already required by HttpKernel)
// require_once 'Symfony/Component/HttpFoundation/autoload.php'; (already required by HttpKernel)
require_once 'Symfony/Component/HttpKernel/autoload.php';
// include_once 'Symfony/Component/ClassLoader/autoload.php'; (already included by HttpKernel)
// include_once 'Symfony/Component/Finder/autoload.php'; (already included by HttpKernel)
if (stream_resolve_include_path('Symfony/Component/Validator/autoload.php')){
    include_once 'Symfony/Component/Validator/autoload.php';
}
if (stream_resolve_include_path('Symfony/Component/Routing/autoload.php')){
    include_once 'Symfony/Component/Routing/autoload.php';
}
if (stream_resolve_include_path('Doctrine/DBAL/autoload.php')){
    include_once 'Doctrine/DBAL/autoload.php';
}
if (stream_resolve_include_path('Symfony/Component/ExpressionLanguage/autoload.php')){
    include_once 'Symfony/Component/ExpressionLanguage/autoload.php';
}

// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
    function($class) {
        static $classes = null;
        if ($classes === null) {
            $classes = array(
                'symfony\\component\\security\\acl\\dbal\\aclprovider' => '/Acl/Dbal/AclProvider.php',
                'symfony\\component\\security\\acl\\dbal\\mutableaclprovider' => '/Acl/Dbal/MutableAclProvider.php',
                'symfony\\component\\security\\acl\\dbal\\schema' => '/Acl/Dbal/Schema.php',
                'symfony\\component\\security\\acl\\domain\\acl' => '/Acl/Domain/Acl.php',
                'symfony\\component\\security\\acl\\domain\\aclcollectioncache' => '/Acl/Domain/AclCollectionCache.php',
                'symfony\\component\\security\\acl\\domain\\auditlogger' => '/Acl/Domain/AuditLogger.php',
                'symfony\\component\\security\\acl\\domain\\doctrineaclcache' => '/Acl/Domain/DoctrineAclCache.php',
                'symfony\\component\\security\\acl\\domain\\entry' => '/Acl/Domain/Entry.php',
                'symfony\\component\\security\\acl\\domain\\fieldentry' => '/Acl/Domain/FieldEntry.php',
                'symfony\\component\\security\\acl\\domain\\objectidentity' => '/Acl/Domain/ObjectIdentity.php',
                'symfony\\component\\security\\acl\\domain\\objectidentityretrievalstrategy' => '/Acl/Domain/ObjectIdentityRetrievalStrategy.php',
                'symfony\\component\\security\\acl\\domain\\permissiongrantingstrategy' => '/Acl/Domain/PermissionGrantingStrategy.php',
                'symfony\\component\\security\\acl\\domain\\rolesecurityidentity' => '/Acl/Domain/RoleSecurityIdentity.php',
                'symfony\\component\\security\\acl\\domain\\securityidentityretrievalstrategy' => '/Acl/Domain/SecurityIdentityRetrievalStrategy.php',
                'symfony\\component\\security\\acl\\domain\\usersecurityidentity' => '/Acl/Domain/UserSecurityIdentity.php',
                'symfony\\component\\security\\acl\\exception\\aclalreadyexistsexception' => '/Acl/Exception/AclAlreadyExistsException.php',
                'symfony\\component\\security\\acl\\exception\\aclnotfoundexception' => '/Acl/Exception/AclNotFoundException.php',
                'symfony\\component\\security\\acl\\exception\\concurrentmodificationexception' => '/Acl/Exception/ConcurrentModificationException.php',
                'symfony\\component\\security\\acl\\exception\\exception' => '/Acl/Exception/Exception.php',
                'symfony\\component\\security\\acl\\exception\\invaliddomainobjectexception' => '/Acl/Exception/InvalidDomainObjectException.php',
                'symfony\\component\\security\\acl\\exception\\noacefoundexception' => '/Acl/Exception/NoAceFoundException.php',
                'symfony\\component\\security\\acl\\exception\\notallaclsfoundexception' => '/Acl/Exception/NotAllAclsFoundException.php',
                'symfony\\component\\security\\acl\\exception\\sidnotloadedexception' => '/Acl/Exception/SidNotLoadedException.php',
                'symfony\\component\\security\\acl\\model\\aclcacheinterface' => '/Acl/Model/AclCacheInterface.php',
                'symfony\\component\\security\\acl\\model\\aclinterface' => '/Acl/Model/AclInterface.php',
                'symfony\\component\\security\\acl\\model\\aclproviderinterface' => '/Acl/Model/AclProviderInterface.php',
                'symfony\\component\\security\\acl\\model\\auditableaclinterface' => '/Acl/Model/AuditableAclInterface.php',
                'symfony\\component\\security\\acl\\model\\auditableentryinterface' => '/Acl/Model/AuditableEntryInterface.php',
                'symfony\\component\\security\\acl\\model\\auditloggerinterface' => '/Acl/Model/AuditLoggerInterface.php',
                'symfony\\component\\security\\acl\\model\\domainobjectinterface' => '/Acl/Model/DomainObjectInterface.php',
                'symfony\\component\\security\\acl\\model\\entryinterface' => '/Acl/Model/EntryInterface.php',
                'symfony\\component\\security\\acl\\model\\fieldentryinterface' => '/Acl/Model/FieldEntryInterface.php',
                'symfony\\component\\security\\acl\\model\\mutableaclinterface' => '/Acl/Model/MutableAclInterface.php',
                'symfony\\component\\security\\acl\\model\\mutableaclproviderinterface' => '/Acl/Model/MutableAclProviderInterface.php',
                'symfony\\component\\security\\acl\\model\\objectidentityinterface' => '/Acl/Model/ObjectIdentityInterface.php',
                'symfony\\component\\security\\acl\\model\\objectidentityretrievalstrategyinterface' => '/Acl/Model/ObjectIdentityRetrievalStrategyInterface.php',
                'symfony\\component\\security\\acl\\model\\permissiongrantingstrategyinterface' => '/Acl/Model/PermissionGrantingStrategyInterface.php',
                'symfony\\component\\security\\acl\\model\\securityidentityinterface' => '/Acl/Model/SecurityIdentityInterface.php',
                'symfony\\component\\security\\acl\\model\\securityidentityretrievalstrategyinterface' => '/Acl/Model/SecurityIdentityRetrievalStrategyInterface.php',
                'symfony\\component\\security\\acl\\permission\\abstractmaskbuilder' => '/Acl/Permission/AbstractMaskBuilder.php',
                'symfony\\component\\security\\acl\\permission\\basicpermissionmap' => '/Acl/Permission/BasicPermissionMap.php',
                'symfony\\component\\security\\acl\\permission\\maskbuilder' => '/Acl/Permission/MaskBuilder.php',
                'symfony\\component\\security\\acl\\permission\\maskbuilderinterface' => '/Acl/Permission/MaskBuilderInterface.php',
                'symfony\\component\\security\\acl\\permission\\maskbuilderretrievalinterface' => '/Acl/Permission/MaskBuilderRetrievalInterface.php',
                'symfony\\component\\security\\acl\\permission\\permissionmapinterface' => '/Acl/Permission/PermissionMapInterface.php',
                'symfony\\component\\security\\acl\\tests\\dbal\\aclproviderbenchmarktest' => '/Acl/Tests/Dbal/AclProviderBenchmarkTest.php',
                'symfony\\component\\security\\acl\\tests\\dbal\\aclprovidertest' => '/Acl/Tests/Dbal/AclProviderTest.php',
                'symfony\\component\\security\\acl\\tests\\dbal\\mutableaclprovidertest' => '/Acl/Tests/Dbal/MutableAclProviderTest.php',
                'symfony\\component\\security\\acl\\tests\\domain\\acltest' => '/Acl/Tests/Domain/AclTest.php',
                'symfony\\component\\security\\acl\\tests\\domain\\auditloggertest' => '/Acl/Tests/Domain/AuditLoggerTest.php',
                'symfony\\component\\security\\acl\\tests\\domain\\customuserimpl' => '/Acl/Tests/Domain/SecurityIdentityRetrievalStrategyTest.php',
                'symfony\\component\\security\\acl\\tests\\domain\\doctrineaclcachetest' => '/Acl/Tests/Domain/DoctrineAclCacheTest.php',
                'symfony\\component\\security\\acl\\tests\\domain\\domainobject' => '/Acl/Tests/Domain/ObjectIdentityRetrievalStrategyTest.php',
                'symfony\\component\\security\\acl\\tests\\domain\\entrytest' => '/Acl/Tests/Domain/EntryTest.php',
                'symfony\\component\\security\\acl\\tests\\domain\\fieldentrytest' => '/Acl/Tests/Domain/FieldEntryTest.php',
                'symfony\\component\\security\\acl\\tests\\domain\\objectidentityretrievalstrategytest' => '/Acl/Tests/Domain/ObjectIdentityRetrievalStrategyTest.php',
                'symfony\\component\\security\\acl\\tests\\domain\\objectidentitytest' => '/Acl/Tests/Domain/ObjectIdentityTest.php',
                'symfony\\component\\security\\acl\\tests\\domain\\permissiongrantingstrategytest' => '/Acl/Tests/Domain/PermissionGrantingStrategyTest.php',
                'symfony\\component\\security\\acl\\tests\\domain\\rolesecurityidentitytest' => '/Acl/Tests/Domain/RoleSecurityIdentityTest.php',
                'symfony\\component\\security\\acl\\tests\\domain\\securityidentityretrievalstrategytest' => '/Acl/Tests/Domain/SecurityIdentityRetrievalStrategyTest.php',
                'symfony\\component\\security\\acl\\tests\\domain\\testdomainobject' => '/Acl/Tests/Domain/ObjectIdentityTest.php',
                'symfony\\component\\security\\acl\\tests\\domain\\usersecurityidentitytest' => '/Acl/Tests/Domain/UserSecurityIdentityTest.php',
                'symfony\\component\\security\\acl\\tests\\permission\\basicpermissionmaptest' => '/Acl/Tests/Permission/BasicPermissionMapTest.php',
                'symfony\\component\\security\\acl\\tests\\permission\\maskbuildertest' => '/Acl/Tests/Permission/MaskBuilderTest.php',
                'symfony\\component\\security\\acl\\tests\\voter\\aclvotertest' => '/Acl/Tests/Voter/AclVoterTest.php',
                'symfony\\component\\security\\acl\\voter\\aclvoter' => '/Acl/Voter/AclVoter.php',
                'symfony\\component\\security\\acl\\voter\\fieldvote' => '/Acl/Voter/FieldVote.php',
                'symfony\\component\\security\\core\\authentication\\authenticationmanagerinterface' => '/Core/Authentication/AuthenticationManagerInterface.php',
                'symfony\\component\\security\\core\\authentication\\authenticationprovidermanager' => '/Core/Authentication/AuthenticationProviderManager.php',
                'symfony\\component\\security\\core\\authentication\\authenticationtrustresolver' => '/Core/Authentication/AuthenticationTrustResolver.php',
                'symfony\\component\\security\\core\\authentication\\authenticationtrustresolverinterface' => '/Core/Authentication/AuthenticationTrustResolverInterface.php',
                'symfony\\component\\security\\core\\authentication\\provider\\anonymousauthenticationprovider' => '/Core/Authentication/Provider/AnonymousAuthenticationProvider.php',
                'symfony\\component\\security\\core\\authentication\\provider\\authenticationproviderinterface' => '/Core/Authentication/Provider/AuthenticationProviderInterface.php',
                'symfony\\component\\security\\core\\authentication\\provider\\daoauthenticationprovider' => '/Core/Authentication/Provider/DaoAuthenticationProvider.php',
                'symfony\\component\\security\\core\\authentication\\provider\\preauthenticatedauthenticationprovider' => '/Core/Authentication/Provider/PreAuthenticatedAuthenticationProvider.php',
                'symfony\\component\\security\\core\\authentication\\provider\\remembermeauthenticationprovider' => '/Core/Authentication/Provider/RememberMeAuthenticationProvider.php',
                'symfony\\component\\security\\core\\authentication\\provider\\simpleauthenticationprovider' => '/Core/Authentication/Provider/SimpleAuthenticationProvider.php',
                'symfony\\component\\security\\core\\authentication\\provider\\userauthenticationprovider' => '/Core/Authentication/Provider/UserAuthenticationProvider.php',
                'symfony\\component\\security\\core\\authentication\\rememberme\\inmemorytokenprovider' => '/Core/Authentication/RememberMe/InMemoryTokenProvider.php',
                'symfony\\component\\security\\core\\authentication\\rememberme\\persistenttoken' => '/Core/Authentication/RememberMe/PersistentToken.php',
                'symfony\\component\\security\\core\\authentication\\rememberme\\persistenttokeninterface' => '/Core/Authentication/RememberMe/PersistentTokenInterface.php',
                'symfony\\component\\security\\core\\authentication\\rememberme\\tokenproviderinterface' => '/Core/Authentication/RememberMe/TokenProviderInterface.php',
                'symfony\\component\\security\\core\\authentication\\simpleauthenticatorinterface' => '/Core/Authentication/SimpleAuthenticatorInterface.php',
                'symfony\\component\\security\\core\\authentication\\simpleformauthenticatorinterface' => '/Core/Authentication/SimpleFormAuthenticatorInterface.php',
                'symfony\\component\\security\\core\\authentication\\simplepreauthenticatorinterface' => '/Core/Authentication/SimplePreAuthenticatorInterface.php',
                'symfony\\component\\security\\core\\authentication\\token\\abstracttoken' => '/Core/Authentication/Token/AbstractToken.php',
                'symfony\\component\\security\\core\\authentication\\token\\anonymoustoken' => '/Core/Authentication/Token/AnonymousToken.php',
                'symfony\\component\\security\\core\\authentication\\token\\preauthenticatedtoken' => '/Core/Authentication/Token/PreAuthenticatedToken.php',
                'symfony\\component\\security\\core\\authentication\\token\\remembermetoken' => '/Core/Authentication/Token/RememberMeToken.php',
                'symfony\\component\\security\\core\\authentication\\token\\storage\\tokenstorage' => '/Core/Authentication/Token/Storage/TokenStorage.php',
                'symfony\\component\\security\\core\\authentication\\token\\storage\\tokenstorageinterface' => '/Core/Authentication/Token/Storage/TokenStorageInterface.php',
                'symfony\\component\\security\\core\\authentication\\token\\tokeninterface' => '/Core/Authentication/Token/TokenInterface.php',
                'symfony\\component\\security\\core\\authentication\\token\\usernamepasswordtoken' => '/Core/Authentication/Token/UsernamePasswordToken.php',
                'symfony\\component\\security\\core\\authenticationevents' => '/Core/AuthenticationEvents.php',
                'symfony\\component\\security\\core\\authorization\\accessdecisionmanager' => '/Core/Authorization/AccessDecisionManager.php',
                'symfony\\component\\security\\core\\authorization\\accessdecisionmanagerinterface' => '/Core/Authorization/AccessDecisionManagerInterface.php',
                'symfony\\component\\security\\core\\authorization\\authorizationchecker' => '/Core/Authorization/AuthorizationChecker.php',
                'symfony\\component\\security\\core\\authorization\\authorizationcheckerinterface' => '/Core/Authorization/AuthorizationCheckerInterface.php',
                'symfony\\component\\security\\core\\authorization\\expressionlanguage' => '/Core/Authorization/ExpressionLanguage.php',
                'symfony\\component\\security\\core\\authorization\\expressionlanguageprovider' => '/Core/Authorization/ExpressionLanguageProvider.php',
                'symfony\\component\\security\\core\\authorization\\voter\\abstractvoter' => '/Core/Authorization/Voter/AbstractVoter.php',
                'symfony\\component\\security\\core\\authorization\\voter\\authenticatedvoter' => '/Core/Authorization/Voter/AuthenticatedVoter.php',
                'symfony\\component\\security\\core\\authorization\\voter\\expressionvoter' => '/Core/Authorization/Voter/ExpressionVoter.php',
                'symfony\\component\\security\\core\\authorization\\voter\\rolehierarchyvoter' => '/Core/Authorization/Voter/RoleHierarchyVoter.php',
                'symfony\\component\\security\\core\\authorization\\voter\\rolevoter' => '/Core/Authorization/Voter/RoleVoter.php',
                'symfony\\component\\security\\core\\authorization\\voter\\voterinterface' => '/Core/Authorization/Voter/VoterInterface.php',
                'symfony\\component\\security\\core\\encoder\\basepasswordencoder' => '/Core/Encoder/BasePasswordEncoder.php',
                'symfony\\component\\security\\core\\encoder\\bcryptpasswordencoder' => '/Core/Encoder/BCryptPasswordEncoder.php',
                'symfony\\component\\security\\core\\encoder\\encoderawareinterface' => '/Core/Encoder/EncoderAwareInterface.php',
                'symfony\\component\\security\\core\\encoder\\encoderfactory' => '/Core/Encoder/EncoderFactory.php',
                'symfony\\component\\security\\core\\encoder\\encoderfactoryinterface' => '/Core/Encoder/EncoderFactoryInterface.php',
                'symfony\\component\\security\\core\\encoder\\messagedigestpasswordencoder' => '/Core/Encoder/MessageDigestPasswordEncoder.php',
                'symfony\\component\\security\\core\\encoder\\passwordencoderinterface' => '/Core/Encoder/PasswordEncoderInterface.php',
                'symfony\\component\\security\\core\\encoder\\pbkdf2passwordencoder' => '/Core/Encoder/Pbkdf2PasswordEncoder.php',
                'symfony\\component\\security\\core\\encoder\\plaintextpasswordencoder' => '/Core/Encoder/PlaintextPasswordEncoder.php',
                'symfony\\component\\security\\core\\encoder\\userpasswordencoder' => '/Core/Encoder/UserPasswordEncoder.php',
                'symfony\\component\\security\\core\\encoder\\userpasswordencoderinterface' => '/Core/Encoder/UserPasswordEncoderInterface.php',
                'symfony\\component\\security\\core\\event\\authenticationevent' => '/Core/Event/AuthenticationEvent.php',
                'symfony\\component\\security\\core\\event\\authenticationfailureevent' => '/Core/Event/AuthenticationFailureEvent.php',
                'symfony\\component\\security\\core\\exception\\accessdeniedexception' => '/Core/Exception/AccessDeniedException.php',
                'symfony\\component\\security\\core\\exception\\accountexpiredexception' => '/Core/Exception/AccountExpiredException.php',
                'symfony\\component\\security\\core\\exception\\accountstatusexception' => '/Core/Exception/AccountStatusException.php',
                'symfony\\component\\security\\core\\exception\\authenticationcredentialsnotfoundexception' => '/Core/Exception/AuthenticationCredentialsNotFoundException.php',
                'symfony\\component\\security\\core\\exception\\authenticationexception' => '/Core/Exception/AuthenticationException.php',
                'symfony\\component\\security\\core\\exception\\authenticationserviceexception' => '/Core/Exception/AuthenticationServiceException.php',
                'symfony\\component\\security\\core\\exception\\badcredentialsexception' => '/Core/Exception/BadCredentialsException.php',
                'symfony\\component\\security\\core\\exception\\cookietheftexception' => '/Core/Exception/CookieTheftException.php',
                'symfony\\component\\security\\core\\exception\\credentialsexpiredexception' => '/Core/Exception/CredentialsExpiredException.php',
                'symfony\\component\\security\\core\\exception\\disabledexception' => '/Core/Exception/DisabledException.php',
                'symfony\\component\\security\\core\\exception\\exceptioninterface' => '/Core/Exception/ExceptionInterface.php',
                'symfony\\component\\security\\core\\exception\\insufficientauthenticationexception' => '/Core/Exception/InsufficientAuthenticationException.php',
                'symfony\\component\\security\\core\\exception\\invalidargumentexception' => '/Core/Exception/InvalidArgumentException.php',
                'symfony\\component\\security\\core\\exception\\invalidcsrftokenexception' => '/Core/Exception/InvalidCsrfTokenException.php',
                'symfony\\component\\security\\core\\exception\\lockedexception' => '/Core/Exception/LockedException.php',
                'symfony\\component\\security\\core\\exception\\logoutexception' => '/Core/Exception/LogoutException.php',
                'symfony\\component\\security\\core\\exception\\nonceexpiredexception' => '/Core/Exception/NonceExpiredException.php',
                'symfony\\component\\security\\core\\exception\\providernotfoundexception' => '/Core/Exception/ProviderNotFoundException.php',
                'symfony\\component\\security\\core\\exception\\runtimeexception' => '/Core/Exception/RuntimeException.php',
                'symfony\\component\\security\\core\\exception\\sessionunavailableexception' => '/Core/Exception/SessionUnavailableException.php',
                'symfony\\component\\security\\core\\exception\\tokennotfoundexception' => '/Core/Exception/TokenNotFoundException.php',
                'symfony\\component\\security\\core\\exception\\unsupporteduserexception' => '/Core/Exception/UnsupportedUserException.php',
                'symfony\\component\\security\\core\\exception\\usernamenotfoundexception' => '/Core/Exception/UsernameNotFoundException.php',
                'symfony\\component\\security\\core\\role\\role' => '/Core/Role/Role.php',
                'symfony\\component\\security\\core\\role\\rolehierarchy' => '/Core/Role/RoleHierarchy.php',
                'symfony\\component\\security\\core\\role\\rolehierarchyinterface' => '/Core/Role/RoleHierarchyInterface.php',
                'symfony\\component\\security\\core\\role\\roleinterface' => '/Core/Role/RoleInterface.php',
                'symfony\\component\\security\\core\\role\\switchuserrole' => '/Core/Role/SwitchUserRole.php',
                'symfony\\component\\security\\core\\security' => '/Core/Security.php',
                'symfony\\component\\security\\core\\securitycontext' => '/Core/SecurityContext.php',
                'symfony\\component\\security\\core\\securitycontextinterface' => '/Core/SecurityContextInterface.php',
                'symfony\\component\\security\\core\\tests\\authentication\\authenticationprovidermanagertest' => '/Core/Tests/Authentication/AuthenticationProviderManagerTest.php',
                'symfony\\component\\security\\core\\tests\\authentication\\authenticationtrustresolvertest' => '/Core/Tests/Authentication/AuthenticationTrustResolverTest.php',
                'symfony\\component\\security\\core\\tests\\authentication\\provider\\anonymousauthenticationprovidertest' => '/Core/Tests/Authentication/Provider/AnonymousAuthenticationProviderTest.php',
                'symfony\\component\\security\\core\\tests\\authentication\\provider\\daoauthenticationprovidertest' => '/Core/Tests/Authentication/Provider/DaoAuthenticationProviderTest.php',
                'symfony\\component\\security\\core\\tests\\authentication\\provider\\preauthenticatedauthenticationprovidertest' => '/Core/Tests/Authentication/Provider/PreAuthenticatedAuthenticationProviderTest.php',
                'symfony\\component\\security\\core\\tests\\authentication\\provider\\remembermeauthenticationprovidertest' => '/Core/Tests/Authentication/Provider/RememberMeAuthenticationProviderTest.php',
                'symfony\\component\\security\\core\\tests\\authentication\\provider\\userauthenticationprovidertest' => '/Core/Tests/Authentication/Provider/UserAuthenticationProviderTest.php',
                'symfony\\component\\security\\core\\tests\\authentication\\rememberme\\inmemorytokenprovidertest' => '/Core/Tests/Authentication/RememberMe/InMemoryTokenProviderTest.php',
                'symfony\\component\\security\\core\\tests\\authentication\\rememberme\\persistenttokentest' => '/Core/Tests/Authentication/RememberMe/PersistentTokenTest.php',
                'symfony\\component\\security\\core\\tests\\authentication\\token\\abstracttokentest' => '/Core/Tests/Authentication/Token/AbstractTokenTest.php',
                'symfony\\component\\security\\core\\tests\\authentication\\token\\anonymoustokentest' => '/Core/Tests/Authentication/Token/AnonymousTokenTest.php',
                'symfony\\component\\security\\core\\tests\\authentication\\token\\concretetoken' => '/Core/Tests/Authentication/Token/AbstractTokenTest.php',
                'symfony\\component\\security\\core\\tests\\authentication\\token\\preauthenticatedtokentest' => '/Core/Tests/Authentication/Token/PreAuthenticatedTokenTest.php',
                'symfony\\component\\security\\core\\tests\\authentication\\token\\remembermetokentest' => '/Core/Tests/Authentication/Token/RememberMeTokenTest.php',
                'symfony\\component\\security\\core\\tests\\authentication\\token\\storage\\tokenstoragetest' => '/Core/Tests/Authentication/Token/Storage/TokenStorageTest.php',
                'symfony\\component\\security\\core\\tests\\authentication\\token\\testuser' => '/Core/Tests/Authentication/Token/AbstractTokenTest.php',
                'symfony\\component\\security\\core\\tests\\authentication\\token\\usernamepasswordtokentest' => '/Core/Tests/Authentication/Token/UsernamePasswordTokenTest.php',
                'symfony\\component\\security\\core\\tests\\authorization\\accessdecisionmanagertest' => '/Core/Tests/Authorization/AccessDecisionManagerTest.php',
                'symfony\\component\\security\\core\\tests\\authorization\\authorizationcheckertest' => '/Core/Tests/Authorization/AuthorizationCheckerTest.php',
                'symfony\\component\\security\\core\\tests\\authorization\\expressionlanguagetest' => '/Core/Tests/Authorization/ExpressionLanguageTest.php',
                'symfony\\component\\security\\core\\tests\\authorization\\voter\\abstractvotertest' => '/Core/Tests/Authorization/Voter/AbstractVoterTest.php',
                'symfony\\component\\security\\core\\tests\\authorization\\voter\\abstractvotertest_voter' => '/Core/Tests/Authorization/Voter/AbstractVoterTest.php',
                'symfony\\component\\security\\core\\tests\\authorization\\voter\\authenticatedvotertest' => '/Core/Tests/Authorization/Voter/AuthenticatedVoterTest.php',
                'symfony\\component\\security\\core\\tests\\authorization\\voter\\expressionvotertest' => '/Core/Tests/Authorization/Voter/ExpressionVoterTest.php',
                'symfony\\component\\security\\core\\tests\\authorization\\voter\\rolehierarchyvotertest' => '/Core/Tests/Authorization/Voter/RoleHierarchyVoterTest.php',
                'symfony\\component\\security\\core\\tests\\authorization\\voter\\rolevotertest' => '/Core/Tests/Authorization/Voter/RoleVoterTest.php',
                'symfony\\component\\security\\core\\tests\\encoder\\basepasswordencodertest' => '/Core/Tests/Encoder/BasePasswordEncoderTest.php',
                'symfony\\component\\security\\core\\tests\\encoder\\bcryptpasswordencodertest' => '/Core/Tests/Encoder/BCryptPasswordEncoderTest.php',
                'symfony\\component\\security\\core\\tests\\encoder\\encawareuser' => '/Core/Tests/Encoder/EncoderFactoryTest.php',
                'symfony\\component\\security\\core\\tests\\encoder\\encoderfactorytest' => '/Core/Tests/Encoder/EncoderFactoryTest.php',
                'symfony\\component\\security\\core\\tests\\encoder\\messagedigestpasswordencodertest' => '/Core/Tests/Encoder/MessageDigestPasswordEncoderTest.php',
                'symfony\\component\\security\\core\\tests\\encoder\\passwordencoder' => '/Core/Tests/Encoder/BasePasswordEncoderTest.php',
                'symfony\\component\\security\\core\\tests\\encoder\\pbkdf2passwordencodertest' => '/Core/Tests/Encoder/Pbkdf2PasswordEncoderTest.php',
                'symfony\\component\\security\\core\\tests\\encoder\\plaintextpasswordencodertest' => '/Core/Tests/Encoder/PlaintextPasswordEncoderTest.php',
                'symfony\\component\\security\\core\\tests\\encoder\\somechilduser' => '/Core/Tests/Encoder/EncoderFactoryTest.php',
                'symfony\\component\\security\\core\\tests\\encoder\\someuser' => '/Core/Tests/Encoder/EncoderFactoryTest.php',
                'symfony\\component\\security\\core\\tests\\encoder\\userpasswordencodertest' => '/Core/Tests/Encoder/UserPasswordEncoderTest.php',
                'symfony\\component\\security\\core\\tests\\exception\\usernamenotfoundexceptiontest' => '/Core/Tests/Exception/UsernameNotFoundExceptionTest.php',
                'symfony\\component\\security\\core\\tests\\legacysecuritycontextinterfacetest' => '/Core/Tests/LegacySecurityContextInterfaceTest.php',
                'symfony\\component\\security\\core\\tests\\legacysecuritycontexttest' => '/Core/Tests/LegacySecurityContextTest.php',
                'symfony\\component\\security\\core\\tests\\resources\\translationfilestest' => '/Core/Tests/Resources/TranslationFilesTest.php',
                'symfony\\component\\security\\core\\tests\\role\\rolehierarchytest' => '/Core/Tests/Role/RoleHierarchyTest.php',
                'symfony\\component\\security\\core\\tests\\role\\roletest' => '/Core/Tests/Role/RoleTest.php',
                'symfony\\component\\security\\core\\tests\\role\\switchuserroletest' => '/Core/Tests/Role/SwitchUserRoleTest.php',
                'symfony\\component\\security\\core\\tests\\user\\chainuserprovidertest' => '/Core/Tests/User/ChainUserProviderTest.php',
                'symfony\\component\\security\\core\\tests\\user\\inmemoryuserprovidertest' => '/Core/Tests/User/InMemoryUserProviderTest.php',
                'symfony\\component\\security\\core\\tests\\user\\usercheckertest' => '/Core/Tests/User/UserCheckerTest.php',
                'symfony\\component\\security\\core\\tests\\user\\usertest' => '/Core/Tests/User/UserTest.php',
                'symfony\\component\\security\\core\\tests\\util\\classutilstest' => '/Core/Tests/Util/ClassUtilsTest.php',
                'symfony\\component\\security\\core\\tests\\util\\stringutilstest' => '/Core/Tests/Util/StringUtilsTest.php',
                'symfony\\component\\security\\core\\tests\\util\\testobject' => '/Core/Tests/Util/ClassUtilsTest.php',
                'symfony\\component\\security\\core\\tests\\validator\\constraints\\legacyuserpasswordvalidatortest' => '/Core/Tests/Validator/Constraints/LegacyUserPasswordValidatorTest.php',
                'symfony\\component\\security\\core\\tests\\validator\\constraints\\userpasswordvalidatortest' => '/Core/Tests/Validator/Constraints/UserPasswordValidatorTest.php',
                'symfony\\component\\security\\core\\user\\advanceduserinterface' => '/Core/User/AdvancedUserInterface.php',
                'symfony\\component\\security\\core\\user\\chainuserprovider' => '/Core/User/ChainUserProvider.php',
                'symfony\\component\\security\\core\\user\\equatableinterface' => '/Core/User/EquatableInterface.php',
                'symfony\\component\\security\\core\\user\\inmemoryuserprovider' => '/Core/User/InMemoryUserProvider.php',
                'symfony\\component\\security\\core\\user\\user' => '/Core/User/User.php',
                'symfony\\component\\security\\core\\user\\userchecker' => '/Core/User/UserChecker.php',
                'symfony\\component\\security\\core\\user\\usercheckerinterface' => '/Core/User/UserCheckerInterface.php',
                'symfony\\component\\security\\core\\user\\userinterface' => '/Core/User/UserInterface.php',
                'symfony\\component\\security\\core\\user\\userproviderinterface' => '/Core/User/UserProviderInterface.php',
                'symfony\\component\\security\\core\\util\\classutils' => '/Core/Util/ClassUtils.php',
                'symfony\\component\\security\\core\\util\\securerandom' => '/Core/Util/SecureRandom.php',
                'symfony\\component\\security\\core\\util\\securerandominterface' => '/Core/Util/SecureRandomInterface.php',
                'symfony\\component\\security\\core\\util\\stringutils' => '/Core/Util/StringUtils.php',
                'symfony\\component\\security\\core\\validator\\constraints\\userpassword' => '/Core/Validator/Constraints/UserPassword.php',
                'symfony\\component\\security\\core\\validator\\constraints\\userpasswordvalidator' => '/Core/Validator/Constraints/UserPasswordValidator.php',
                'symfony\\component\\security\\csrf\\csrftoken' => '/Csrf/CsrfToken.php',
                'symfony\\component\\security\\csrf\\csrftokenmanager' => '/Csrf/CsrfTokenManager.php',
                'symfony\\component\\security\\csrf\\csrftokenmanagerinterface' => '/Csrf/CsrfTokenManagerInterface.php',
                'symfony\\component\\security\\csrf\\exception\\tokennotfoundexception' => '/Csrf/Exception/TokenNotFoundException.php',
                'symfony\\component\\security\\csrf\\tests\\csrftokenmanagertest' => '/Csrf/Tests/CsrfTokenManagerTest.php',
                'symfony\\component\\security\\csrf\\tests\\tokengenerator\\urisafetokengeneratortest' => '/Csrf/Tests/TokenGenerator/UriSafeTokenGeneratorTest.php',
                'symfony\\component\\security\\csrf\\tests\\tokenstorage\\nativesessiontokenstoragetest' => '/Csrf/Tests/TokenStorage/NativeSessionTokenStorageTest.php',
                'symfony\\component\\security\\csrf\\tests\\tokenstorage\\sessiontokenstoragetest' => '/Csrf/Tests/TokenStorage/SessionTokenStorageTest.php',
                'symfony\\component\\security\\csrf\\tokengenerator\\tokengeneratorinterface' => '/Csrf/TokenGenerator/TokenGeneratorInterface.php',
                'symfony\\component\\security\\csrf\\tokengenerator\\urisafetokengenerator' => '/Csrf/TokenGenerator/UriSafeTokenGenerator.php',
                'symfony\\component\\security\\csrf\\tokenstorage\\nativesessiontokenstorage' => '/Csrf/TokenStorage/NativeSessionTokenStorage.php',
                'symfony\\component\\security\\csrf\\tokenstorage\\sessiontokenstorage' => '/Csrf/TokenStorage/SessionTokenStorage.php',
                'symfony\\component\\security\\csrf\\tokenstorage\\tokenstorageinterface' => '/Csrf/TokenStorage/TokenStorageInterface.php',
                'symfony\\component\\security\\http\\accessmap' => '/Http/AccessMap.php',
                'symfony\\component\\security\\http\\accessmapinterface' => '/Http/AccessMapInterface.php',
                'symfony\\component\\security\\http\\authentication\\authenticationfailurehandlerinterface' => '/Http/Authentication/AuthenticationFailureHandlerInterface.php',
                'symfony\\component\\security\\http\\authentication\\authenticationsuccesshandlerinterface' => '/Http/Authentication/AuthenticationSuccessHandlerInterface.php',
                'symfony\\component\\security\\http\\authentication\\authenticationutils' => '/Http/Authentication/AuthenticationUtils.php',
                'symfony\\component\\security\\http\\authentication\\customauthenticationfailurehandler' => '/Http/Authentication/CustomAuthenticationFailureHandler.php',
                'symfony\\component\\security\\http\\authentication\\customauthenticationsuccesshandler' => '/Http/Authentication/CustomAuthenticationSuccessHandler.php',
                'symfony\\component\\security\\http\\authentication\\defaultauthenticationfailurehandler' => '/Http/Authentication/DefaultAuthenticationFailureHandler.php',
                'symfony\\component\\security\\http\\authentication\\defaultauthenticationsuccesshandler' => '/Http/Authentication/DefaultAuthenticationSuccessHandler.php',
                'symfony\\component\\security\\http\\authentication\\simpleauthenticationhandler' => '/Http/Authentication/SimpleAuthenticationHandler.php',
                'symfony\\component\\security\\http\\authorization\\accessdeniedhandlerinterface' => '/Http/Authorization/AccessDeniedHandlerInterface.php',
                'symfony\\component\\security\\http\\entrypoint\\authenticationentrypointinterface' => '/Http/EntryPoint/AuthenticationEntryPointInterface.php',
                'symfony\\component\\security\\http\\entrypoint\\basicauthenticationentrypoint' => '/Http/EntryPoint/BasicAuthenticationEntryPoint.php',
                'symfony\\component\\security\\http\\entrypoint\\digestauthenticationentrypoint' => '/Http/EntryPoint/DigestAuthenticationEntryPoint.php',
                'symfony\\component\\security\\http\\entrypoint\\formauthenticationentrypoint' => '/Http/EntryPoint/FormAuthenticationEntryPoint.php',
                'symfony\\component\\security\\http\\entrypoint\\retryauthenticationentrypoint' => '/Http/EntryPoint/RetryAuthenticationEntryPoint.php',
                'symfony\\component\\security\\http\\event\\interactiveloginevent' => '/Http/Event/InteractiveLoginEvent.php',
                'symfony\\component\\security\\http\\event\\switchuserevent' => '/Http/Event/SwitchUserEvent.php',
                'symfony\\component\\security\\http\\firewall' => '/Http/Firewall.php',
                'symfony\\component\\security\\http\\firewall\\abstractauthenticationlistener' => '/Http/Firewall/AbstractAuthenticationListener.php',
                'symfony\\component\\security\\http\\firewall\\abstractpreauthenticatedlistener' => '/Http/Firewall/AbstractPreAuthenticatedListener.php',
                'symfony\\component\\security\\http\\firewall\\accesslistener' => '/Http/Firewall/AccessListener.php',
                'symfony\\component\\security\\http\\firewall\\anonymousauthenticationlistener' => '/Http/Firewall/AnonymousAuthenticationListener.php',
                'symfony\\component\\security\\http\\firewall\\basicauthenticationlistener' => '/Http/Firewall/BasicAuthenticationListener.php',
                'symfony\\component\\security\\http\\firewall\\channellistener' => '/Http/Firewall/ChannelListener.php',
                'symfony\\component\\security\\http\\firewall\\contextlistener' => '/Http/Firewall/ContextListener.php',
                'symfony\\component\\security\\http\\firewall\\digestauthenticationlistener' => '/Http/Firewall/DigestAuthenticationListener.php',
                'symfony\\component\\security\\http\\firewall\\digestdata' => '/Http/Firewall/DigestAuthenticationListener.php',
                'symfony\\component\\security\\http\\firewall\\exceptionlistener' => '/Http/Firewall/ExceptionListener.php',
                'symfony\\component\\security\\http\\firewall\\listenerinterface' => '/Http/Firewall/ListenerInterface.php',
                'symfony\\component\\security\\http\\firewall\\logoutlistener' => '/Http/Firewall/LogoutListener.php',
                'symfony\\component\\security\\http\\firewall\\remembermelistener' => '/Http/Firewall/RememberMeListener.php',
                'symfony\\component\\security\\http\\firewall\\remoteuserauthenticationlistener' => '/Http/Firewall/RemoteUserAuthenticationListener.php',
                'symfony\\component\\security\\http\\firewall\\simpleformauthenticationlistener' => '/Http/Firewall/SimpleFormAuthenticationListener.php',
                'symfony\\component\\security\\http\\firewall\\simplepreauthenticationlistener' => '/Http/Firewall/SimplePreAuthenticationListener.php',
                'symfony\\component\\security\\http\\firewall\\switchuserlistener' => '/Http/Firewall/SwitchUserListener.php',
                'symfony\\component\\security\\http\\firewall\\usernamepasswordformauthenticationlistener' => '/Http/Firewall/UsernamePasswordFormAuthenticationListener.php',
                'symfony\\component\\security\\http\\firewall\\x509authenticationlistener' => '/Http/Firewall/X509AuthenticationListener.php',
                'symfony\\component\\security\\http\\firewallmap' => '/Http/FirewallMap.php',
                'symfony\\component\\security\\http\\firewallmapinterface' => '/Http/FirewallMapInterface.php',
                'symfony\\component\\security\\http\\httputils' => '/Http/HttpUtils.php',
                'symfony\\component\\security\\http\\logout\\cookieclearinglogouthandler' => '/Http/Logout/CookieClearingLogoutHandler.php',
                'symfony\\component\\security\\http\\logout\\defaultlogoutsuccesshandler' => '/Http/Logout/DefaultLogoutSuccessHandler.php',
                'symfony\\component\\security\\http\\logout\\logouthandlerinterface' => '/Http/Logout/LogoutHandlerInterface.php',
                'symfony\\component\\security\\http\\logout\\logoutsuccesshandlerinterface' => '/Http/Logout/LogoutSuccessHandlerInterface.php',
                'symfony\\component\\security\\http\\logout\\logouturlgenerator' => '/Http/Logout/LogoutUrlGenerator.php',
                'symfony\\component\\security\\http\\logout\\sessionlogouthandler' => '/Http/Logout/SessionLogoutHandler.php',
                'symfony\\component\\security\\http\\rememberme\\abstractremembermeservices' => '/Http/RememberMe/AbstractRememberMeServices.php',
                'symfony\\component\\security\\http\\rememberme\\persistenttokenbasedremembermeservices' => '/Http/RememberMe/PersistentTokenBasedRememberMeServices.php',
                'symfony\\component\\security\\http\\rememberme\\remembermeservicesinterface' => '/Http/RememberMe/RememberMeServicesInterface.php',
                'symfony\\component\\security\\http\\rememberme\\responselistener' => '/Http/RememberMe/ResponseListener.php',
                'symfony\\component\\security\\http\\rememberme\\tokenbasedremembermeservices' => '/Http/RememberMe/TokenBasedRememberMeServices.php',
                'symfony\\component\\security\\http\\securityevents' => '/Http/SecurityEvents.php',
                'symfony\\component\\security\\http\\session\\sessionauthenticationstrategy' => '/Http/Session/SessionAuthenticationStrategy.php',
                'symfony\\component\\security\\http\\session\\sessionauthenticationstrategyinterface' => '/Http/Session/SessionAuthenticationStrategyInterface.php',
                'symfony\\component\\security\\http\\tests\\accessmaptest' => '/Http/Tests/AccessMapTest.php',
                'symfony\\component\\security\\http\\tests\\authentication\\defaultauthenticationfailurehandlertest' => '/Http/Tests/Authentication/DefaultAuthenticationFailureHandlerTest.php',
                'symfony\\component\\security\\http\\tests\\authentication\\defaultauthenticationsuccesshandlertest' => '/Http/Tests/Authentication/DefaultAuthenticationSuccessHandlerTest.php',
                'symfony\\component\\security\\http\\tests\\entrypoint\\basicauthenticationentrypointtest' => '/Http/Tests/EntryPoint/BasicAuthenticationEntryPointTest.php',
                'symfony\\component\\security\\http\\tests\\entrypoint\\digestauthenticationentrypointtest' => '/Http/Tests/EntryPoint/DigestAuthenticationEntryPointTest.php',
                'symfony\\component\\security\\http\\tests\\entrypoint\\formauthenticationentrypointtest' => '/Http/Tests/EntryPoint/FormAuthenticationEntryPointTest.php',
                'symfony\\component\\security\\http\\tests\\entrypoint\\retryauthenticationentrypointtest' => '/Http/Tests/EntryPoint/RetryAuthenticationEntryPointTest.php',
                'symfony\\component\\security\\http\\tests\\firewall\\abstractpreauthenticatedlistenertest' => '/Http/Tests/Firewall/AbstractPreAuthenticatedListenerTest.php',
                'symfony\\component\\security\\http\\tests\\firewall\\accesslistenertest' => '/Http/Tests/Firewall/AccessListenerTest.php',
                'symfony\\component\\security\\http\\tests\\firewall\\anonymousauthenticationlistenertest' => '/Http/Tests/Firewall/AnonymousAuthenticationListenerTest.php',
                'symfony\\component\\security\\http\\tests\\firewall\\basicauthenticationlistenertest' => '/Http/Tests/Firewall/BasicAuthenticationListenerTest.php',
                'symfony\\component\\security\\http\\tests\\firewall\\channellistenertest' => '/Http/Tests/Firewall/ChannelListenerTest.php',
                'symfony\\component\\security\\http\\tests\\firewall\\contextlistenertest' => '/Http/Tests/Firewall/ContextListenerTest.php',
                'symfony\\component\\security\\http\\tests\\firewall\\digestdatatest' => '/Http/Tests/Firewall/DigestDataTest.php',
                'symfony\\component\\security\\http\\tests\\firewall\\exceptionlistenertest' => '/Http/Tests/Firewall/ExceptionListenerTest.php',
                'symfony\\component\\security\\http\\tests\\firewall\\logoutlistenertest' => '/Http/Tests/Firewall/LogoutListenerTest.php',
                'symfony\\component\\security\\http\\tests\\firewall\\remembermelistenertest' => '/Http/Tests/Firewall/RememberMeListenerTest.php',
                'symfony\\component\\security\\http\\tests\\firewall\\remoteuserauthenticationlistenertest' => '/Http/Tests/Firewall/RemoteUserAuthenticationListenerTest.php',
                'symfony\\component\\security\\http\\tests\\firewall\\simplepreauthenticationlistenertest' => '/Http/Tests/Firewall/SimplePreAuthenticationListenerTest.php',
                'symfony\\component\\security\\http\\tests\\firewall\\switchuserlistenertest' => '/Http/Tests/Firewall/SwitchUserListenerTest.php',
                'symfony\\component\\security\\http\\tests\\firewall\\x509authenticationlistenertest' => '/Http/Tests/Firewall/X509AuthenticationListenerTest.php',
                'symfony\\component\\security\\http\\tests\\firewallmaptest' => '/Http/Tests/FirewallMapTest.php',
                'symfony\\component\\security\\http\\tests\\firewalltest' => '/Http/Tests/FirewallTest.php',
                'symfony\\component\\security\\http\\tests\\httputilstest' => '/Http/Tests/HttpUtilsTest.php',
                'symfony\\component\\security\\http\\tests\\logout\\cookieclearinglogouthandlertest' => '/Http/Tests/Logout/CookieClearingLogoutHandlerTest.php',
                'symfony\\component\\security\\http\\tests\\logout\\defaultlogoutsuccesshandlertest' => '/Http/Tests/Logout/DefaultLogoutSuccessHandlerTest.php',
                'symfony\\component\\security\\http\\tests\\logout\\sessionlogouthandlertest' => '/Http/Tests/Logout/SessionLogoutHandlerTest.php',
                'symfony\\component\\security\\http\\tests\\rememberme\\abstractremembermeservicestest' => '/Http/Tests/RememberMe/AbstractRememberMeServicesTest.php',
                'symfony\\component\\security\\http\\tests\\rememberme\\persistenttokenbasedremembermeservicestest' => '/Http/Tests/RememberMe/PersistentTokenBasedRememberMeServicesTest.php',
                'symfony\\component\\security\\http\\tests\\rememberme\\responselistenertest' => '/Http/Tests/RememberMe/ResponseListenerTest.php',
                'symfony\\component\\security\\http\\tests\\rememberme\\tokenbasedremembermeservicestest' => '/Http/Tests/RememberMe/TokenBasedRememberMeServicesTest.php',
                'symfony\\component\\security\\http\\tests\\session\\sessionauthenticationstrategytest' => '/Http/Tests/Session/SessionAuthenticationStrategyTest.php',
                'symfony\\component\\security\\http\\tests\\simpleauthenticationhandlertest' => '/Http/Tests/Authentication/SimpleAuthenticationHandlerTest.php',
                'symfony\\component\\security\\http\\tests\\testfailurehandlerinterface' => '/Http/Tests/Authentication/SimpleAuthenticationHandlerTest.php',
                'symfony\\component\\security\\http\\tests\\testsuccesshandlerinterface' => '/Http/Tests/Authentication/SimpleAuthenticationHandlerTest.php',
                'symfony\\component\\security\\tests\\resources\\translationfilestest' => '/Tests/Resources/TranslationFilesTest.php',
                'symfony\\component\\security\\tests\\translationsyncstatustest' => '/Tests/TranslationSyncStatusTest.php'
            );
        }
        $cn = strtolower($class);
        if (isset($classes[$cn]) and file_exists(__DIR__ . $classes[$cn])) {
            require __DIR__ . $classes[$cn];
        }
    }
);
// @codeCoverageIgnoreEnd