This file is indexed.

/usr/share/php/Doctrine/ORM/autoload.php is in php-doctrine-orm 2.4.8-2.

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
<?php

// require_once 'Doctrine/Common/Collections/autoload.php'; (already required by Doctrine/Common that is required by Doctrine/DBAL)
require_once 'Doctrine/DBAL/autoload.php';
require_once 'Symfony/Component/Console/autoload.php';
if (stream_resolve_include_path('Symfony/Component/Yaml/autoload.php')){
    include_once 'Symfony/Component/Yaml/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(
                'doctrine\\orm\\abstractquery' => '/AbstractQuery.php',
                'doctrine\\orm\\configuration' => '/Configuration.php',
                'doctrine\\orm\\decorator\\entitymanagerdecorator' => '/Decorator/EntityManagerDecorator.php',
                'doctrine\\orm\\entitymanager' => '/EntityManager.php',
                'doctrine\\orm\\entitymanagerinterface' => '/EntityManagerInterface.php',
                'doctrine\\orm\\entitynotfoundexception' => '/EntityNotFoundException.php',
                'doctrine\\orm\\entityrepository' => '/EntityRepository.php',
                'doctrine\\orm\\event\\lifecycleeventargs' => '/Event/LifecycleEventArgs.php',
                'doctrine\\orm\\event\\listenersinvoker' => '/Event/ListenersInvoker.php',
                'doctrine\\orm\\event\\loadclassmetadataeventargs' => '/Event/LoadClassMetadataEventArgs.php',
                'doctrine\\orm\\event\\oncleareventargs' => '/Event/OnClearEventArgs.php',
                'doctrine\\orm\\event\\onflusheventargs' => '/Event/OnFlushEventArgs.php',
                'doctrine\\orm\\event\\postflusheventargs' => '/Event/PostFlushEventArgs.php',
                'doctrine\\orm\\event\\preflusheventargs' => '/Event/PreFlushEventArgs.php',
                'doctrine\\orm\\event\\preupdateeventargs' => '/Event/PreUpdateEventArgs.php',
                'doctrine\\orm\\events' => '/Events.php',
                'doctrine\\orm\\id\\abstractidgenerator' => '/Id/AbstractIdGenerator.php',
                'doctrine\\orm\\id\\assignedgenerator' => '/Id/AssignedGenerator.php',
                'doctrine\\orm\\id\\bigintegeridentitygenerator' => '/Id/BigIntegerIdentityGenerator.php',
                'doctrine\\orm\\id\\identitygenerator' => '/Id/IdentityGenerator.php',
                'doctrine\\orm\\id\\sequencegenerator' => '/Id/SequenceGenerator.php',
                'doctrine\\orm\\id\\tablegenerator' => '/Id/TableGenerator.php',
                'doctrine\\orm\\id\\uuidgenerator' => '/Id/UuidGenerator.php',
                'doctrine\\orm\\internal\\commitordercalculator' => '/Internal/CommitOrderCalculator.php',
                'doctrine\\orm\\internal\\hydration\\abstracthydrator' => '/Internal/Hydration/AbstractHydrator.php',
                'doctrine\\orm\\internal\\hydration\\arrayhydrator' => '/Internal/Hydration/ArrayHydrator.php',
                'doctrine\\orm\\internal\\hydration\\hydrationexception' => '/Internal/Hydration/HydrationException.php',
                'doctrine\\orm\\internal\\hydration\\iterableresult' => '/Internal/Hydration/IterableResult.php',
                'doctrine\\orm\\internal\\hydration\\objecthydrator' => '/Internal/Hydration/ObjectHydrator.php',
                'doctrine\\orm\\internal\\hydration\\scalarhydrator' => '/Internal/Hydration/ScalarHydrator.php',
                'doctrine\\orm\\internal\\hydration\\simpleobjecthydrator' => '/Internal/Hydration/SimpleObjectHydrator.php',
                'doctrine\\orm\\internal\\hydration\\singlescalarhydrator' => '/Internal/Hydration/SingleScalarHydrator.php',
                'doctrine\\orm\\mapping\\annotation' => '/Mapping/Annotation.php',
                'doctrine\\orm\\mapping\\ansiquotestrategy' => '/Mapping/AnsiQuoteStrategy.php',
                'doctrine\\orm\\mapping\\associationoverride' => '/Mapping/AssociationOverride.php',
                'doctrine\\orm\\mapping\\associationoverrides' => '/Mapping/AssociationOverrides.php',
                'doctrine\\orm\\mapping\\attributeoverride' => '/Mapping/AttributeOverride.php',
                'doctrine\\orm\\mapping\\attributeoverrides' => '/Mapping/AttributeOverrides.php',
                'doctrine\\orm\\mapping\\builder\\associationbuilder' => '/Mapping/Builder/AssociationBuilder.php',
                'doctrine\\orm\\mapping\\builder\\classmetadatabuilder' => '/Mapping/Builder/ClassMetadataBuilder.php',
                'doctrine\\orm\\mapping\\builder\\entitylistenerbuilder' => '/Mapping/Builder/EntityListenerBuilder.php',
                'doctrine\\orm\\mapping\\builder\\fieldbuilder' => '/Mapping/Builder/FieldBuilder.php',
                'doctrine\\orm\\mapping\\builder\\manytomanyassociationbuilder' => '/Mapping/Builder/ManyToManyAssociationBuilder.php',
                'doctrine\\orm\\mapping\\builder\\onetomanyassociationbuilder' => '/Mapping/Builder/OneToManyAssociationBuilder.php',
                'doctrine\\orm\\mapping\\changetrackingpolicy' => '/Mapping/ChangeTrackingPolicy.php',
                'doctrine\\orm\\mapping\\classmetadata' => '/Mapping/ClassMetadata.php',
                'doctrine\\orm\\mapping\\classmetadatafactory' => '/Mapping/ClassMetadataFactory.php',
                'doctrine\\orm\\mapping\\classmetadatainfo' => '/Mapping/ClassMetadataInfo.php',
                'doctrine\\orm\\mapping\\column' => '/Mapping/Column.php',
                'doctrine\\orm\\mapping\\columnresult' => '/Mapping/ColumnResult.php',
                'doctrine\\orm\\mapping\\customidgenerator' => '/Mapping/CustomIdGenerator.php',
                'doctrine\\orm\\mapping\\defaultentitylistenerresolver' => '/Mapping/DefaultEntityListenerResolver.php',
                'doctrine\\orm\\mapping\\defaultnamingstrategy' => '/Mapping/DefaultNamingStrategy.php',
                'doctrine\\orm\\mapping\\defaultquotestrategy' => '/Mapping/DefaultQuoteStrategy.php',
                'doctrine\\orm\\mapping\\discriminatorcolumn' => '/Mapping/DiscriminatorColumn.php',
                'doctrine\\orm\\mapping\\discriminatormap' => '/Mapping/DiscriminatorMap.php',
                'doctrine\\orm\\mapping\\driver\\annotationdriver' => '/Mapping/Driver/AnnotationDriver.php',
                'doctrine\\orm\\mapping\\driver\\databasedriver' => '/Mapping/Driver/DatabaseDriver.php',
                'doctrine\\orm\\mapping\\driver\\driverchain' => '/Mapping/Driver/DriverChain.php',
                'doctrine\\orm\\mapping\\driver\\phpdriver' => '/Mapping/Driver/PHPDriver.php',
                'doctrine\\orm\\mapping\\driver\\simplifiedxmldriver' => '/Mapping/Driver/SimplifiedXmlDriver.php',
                'doctrine\\orm\\mapping\\driver\\simplifiedyamldriver' => '/Mapping/Driver/SimplifiedYamlDriver.php',
                'doctrine\\orm\\mapping\\driver\\staticphpdriver' => '/Mapping/Driver/StaticPHPDriver.php',
                'doctrine\\orm\\mapping\\driver\\xmldriver' => '/Mapping/Driver/XmlDriver.php',
                'doctrine\\orm\\mapping\\driver\\yamldriver' => '/Mapping/Driver/YamlDriver.php',
                'doctrine\\orm\\mapping\\elementcollection' => '/Mapping/ElementCollection.php',
                'doctrine\\orm\\mapping\\entity' => '/Mapping/Entity.php',
                'doctrine\\orm\\mapping\\entitylistenerresolver' => '/Mapping/EntityListenerResolver.php',
                'doctrine\\orm\\mapping\\entitylisteners' => '/Mapping/EntityListeners.php',
                'doctrine\\orm\\mapping\\entityresult' => '/Mapping/EntityResult.php',
                'doctrine\\orm\\mapping\\fieldresult' => '/Mapping/FieldResult.php',
                'doctrine\\orm\\mapping\\generatedvalue' => '/Mapping/GeneratedValue.php',
                'doctrine\\orm\\mapping\\haslifecyclecallbacks' => '/Mapping/HasLifecycleCallbacks.php',
                'doctrine\\orm\\mapping\\id' => '/Mapping/Id.php',
                'doctrine\\orm\\mapping\\index' => '/Mapping/Index.php',
                'doctrine\\orm\\mapping\\inheritancetype' => '/Mapping/InheritanceType.php',
                'doctrine\\orm\\mapping\\joincolumn' => '/Mapping/JoinColumn.php',
                'doctrine\\orm\\mapping\\joincolumns' => '/Mapping/JoinColumns.php',
                'doctrine\\orm\\mapping\\jointable' => '/Mapping/JoinTable.php',
                'doctrine\\orm\\mapping\\manytomany' => '/Mapping/ManyToMany.php',
                'doctrine\\orm\\mapping\\manytoone' => '/Mapping/ManyToOne.php',
                'doctrine\\orm\\mapping\\mappedsuperclass' => '/Mapping/MappedSuperclass.php',
                'doctrine\\orm\\mapping\\mappingexception' => '/Mapping/MappingException.php',
                'doctrine\\orm\\mapping\\namednativequeries' => '/Mapping/NamedNativeQueries.php',
                'doctrine\\orm\\mapping\\namednativequery' => '/Mapping/NamedNativeQuery.php',
                'doctrine\\orm\\mapping\\namedqueries' => '/Mapping/NamedQueries.php',
                'doctrine\\orm\\mapping\\namedquery' => '/Mapping/NamedQuery.php',
                'doctrine\\orm\\mapping\\namingstrategy' => '/Mapping/NamingStrategy.php',
                'doctrine\\orm\\mapping\\onetomany' => '/Mapping/OneToMany.php',
                'doctrine\\orm\\mapping\\onetoone' => '/Mapping/OneToOne.php',
                'doctrine\\orm\\mapping\\orderby' => '/Mapping/OrderBy.php',
                'doctrine\\orm\\mapping\\postload' => '/Mapping/PostLoad.php',
                'doctrine\\orm\\mapping\\postpersist' => '/Mapping/PostPersist.php',
                'doctrine\\orm\\mapping\\postremove' => '/Mapping/PostRemove.php',
                'doctrine\\orm\\mapping\\postupdate' => '/Mapping/PostUpdate.php',
                'doctrine\\orm\\mapping\\preflush' => '/Mapping/PreFlush.php',
                'doctrine\\orm\\mapping\\prepersist' => '/Mapping/PrePersist.php',
                'doctrine\\orm\\mapping\\preremove' => '/Mapping/PreRemove.php',
                'doctrine\\orm\\mapping\\preupdate' => '/Mapping/PreUpdate.php',
                'doctrine\\orm\\mapping\\quotestrategy' => '/Mapping/QuoteStrategy.php',
                'doctrine\\orm\\mapping\\sequencegenerator' => '/Mapping/SequenceGenerator.php',
                'doctrine\\orm\\mapping\\sqlresultsetmapping' => '/Mapping/SqlResultSetMapping.php',
                'doctrine\\orm\\mapping\\sqlresultsetmappings' => '/Mapping/SqlResultSetMappings.php',
                'doctrine\\orm\\mapping\\table' => '/Mapping/Table.php',
                'doctrine\\orm\\mapping\\underscorenamingstrategy' => '/Mapping/UnderscoreNamingStrategy.php',
                'doctrine\\orm\\mapping\\uniqueconstraint' => '/Mapping/UniqueConstraint.php',
                'doctrine\\orm\\mapping\\version' => '/Mapping/Version.php',
                'doctrine\\orm\\nativequery' => '/NativeQuery.php',
                'doctrine\\orm\\nonuniqueresultexception' => '/NonUniqueResultException.php',
                'doctrine\\orm\\noresultexception' => '/NoResultException.php',
                'doctrine\\orm\\optimisticlockexception' => '/OptimisticLockException.php',
                'doctrine\\orm\\ormexception' => '/ORMException.php',
                'doctrine\\orm\\orminvalidargumentexception' => '/ORMInvalidArgumentException.php',
                'doctrine\\orm\\persistentcollection' => '/PersistentCollection.php',
                'doctrine\\orm\\persisters\\abstractcollectionpersister' => '/Persisters/AbstractCollectionPersister.php',
                'doctrine\\orm\\persisters\\abstractentityinheritancepersister' => '/Persisters/AbstractEntityInheritancePersister.php',
                'doctrine\\orm\\persisters\\basicentitypersister' => '/Persisters/BasicEntityPersister.php',
                'doctrine\\orm\\persisters\\elementcollectionpersister' => '/Persisters/ElementCollectionPersister.php',
                'doctrine\\orm\\persisters\\joinedsubclasspersister' => '/Persisters/JoinedSubclassPersister.php',
                'doctrine\\orm\\persisters\\manytomanypersister' => '/Persisters/ManyToManyPersister.php',
                'doctrine\\orm\\persisters\\onetomanypersister' => '/Persisters/OneToManyPersister.php',
                'doctrine\\orm\\persisters\\persisterexception' => '/Persisters/PersisterException.php',
                'doctrine\\orm\\persisters\\singletablepersister' => '/Persisters/SingleTablePersister.php',
                'doctrine\\orm\\persisters\\sqlexpressionvisitor' => '/Persisters/SqlExpressionVisitor.php',
                'doctrine\\orm\\persisters\\sqlvaluevisitor' => '/Persisters/SqlValueVisitor.php',
                'doctrine\\orm\\persisters\\unionsubclasspersister' => '/Persisters/UnionSubclassPersister.php',
                'doctrine\\orm\\pessimisticlockexception' => '/PessimisticLockException.php',
                'doctrine\\orm\\proxy\\autoloader' => '/Proxy/Autoloader.php',
                'doctrine\\orm\\proxy\\proxy' => '/Proxy/Proxy.php',
                'doctrine\\orm\\proxy\\proxyfactory' => '/Proxy/ProxyFactory.php',
                'doctrine\\orm\\query' => '/Query.php',
                'doctrine\\orm\\query\\ast\\aggregateexpression' => '/Query/AST/AggregateExpression.php',
                'doctrine\\orm\\query\\ast\\arithmeticexpression' => '/Query/AST/ArithmeticExpression.php',
                'doctrine\\orm\\query\\ast\\arithmeticfactor' => '/Query/AST/ArithmeticFactor.php',
                'doctrine\\orm\\query\\ast\\arithmeticterm' => '/Query/AST/ArithmeticTerm.php',
                'doctrine\\orm\\query\\ast\\astexception' => '/Query/AST/ASTException.php',
                'doctrine\\orm\\query\\ast\\betweenexpression' => '/Query/AST/BetweenExpression.php',
                'doctrine\\orm\\query\\ast\\coalesceexpression' => '/Query/AST/CoalesceExpression.php',
                'doctrine\\orm\\query\\ast\\collectionmemberexpression' => '/Query/AST/CollectionMemberExpression.php',
                'doctrine\\orm\\query\\ast\\comparisonexpression' => '/Query/AST/ComparisonExpression.php',
                'doctrine\\orm\\query\\ast\\conditionalexpression' => '/Query/AST/ConditionalExpression.php',
                'doctrine\\orm\\query\\ast\\conditionalfactor' => '/Query/AST/ConditionalFactor.php',
                'doctrine\\orm\\query\\ast\\conditionalprimary' => '/Query/AST/ConditionalPrimary.php',
                'doctrine\\orm\\query\\ast\\conditionalterm' => '/Query/AST/ConditionalTerm.php',
                'doctrine\\orm\\query\\ast\\deleteclause' => '/Query/AST/DeleteClause.php',
                'doctrine\\orm\\query\\ast\\deletestatement' => '/Query/AST/DeleteStatement.php',
                'doctrine\\orm\\query\\ast\\emptycollectioncomparisonexpression' => '/Query/AST/EmptyCollectionComparisonExpression.php',
                'doctrine\\orm\\query\\ast\\existsexpression' => '/Query/AST/ExistsExpression.php',
                'doctrine\\orm\\query\\ast\\fromclause' => '/Query/AST/FromClause.php',
                'doctrine\\orm\\query\\ast\\functions\\absfunction' => '/Query/AST/Functions/AbsFunction.php',
                'doctrine\\orm\\query\\ast\\functions\\bitandfunction' => '/Query/AST/Functions/BitAndFunction.php',
                'doctrine\\orm\\query\\ast\\functions\\bitorfunction' => '/Query/AST/Functions/BitOrFunction.php',
                'doctrine\\orm\\query\\ast\\functions\\concatfunction' => '/Query/AST/Functions/ConcatFunction.php',
                'doctrine\\orm\\query\\ast\\functions\\currentdatefunction' => '/Query/AST/Functions/CurrentDateFunction.php',
                'doctrine\\orm\\query\\ast\\functions\\currenttimefunction' => '/Query/AST/Functions/CurrentTimeFunction.php',
                'doctrine\\orm\\query\\ast\\functions\\currenttimestampfunction' => '/Query/AST/Functions/CurrentTimestampFunction.php',
                'doctrine\\orm\\query\\ast\\functions\\dateaddfunction' => '/Query/AST/Functions/DateAddFunction.php',
                'doctrine\\orm\\query\\ast\\functions\\datedifffunction' => '/Query/AST/Functions/DateDiffFunction.php',
                'doctrine\\orm\\query\\ast\\functions\\datesubfunction' => '/Query/AST/Functions/DateSubFunction.php',
                'doctrine\\orm\\query\\ast\\functions\\functionnode' => '/Query/AST/Functions/FunctionNode.php',
                'doctrine\\orm\\query\\ast\\functions\\identityfunction' => '/Query/AST/Functions/IdentityFunction.php',
                'doctrine\\orm\\query\\ast\\functions\\lengthfunction' => '/Query/AST/Functions/LengthFunction.php',
                'doctrine\\orm\\query\\ast\\functions\\locatefunction' => '/Query/AST/Functions/LocateFunction.php',
                'doctrine\\orm\\query\\ast\\functions\\lowerfunction' => '/Query/AST/Functions/LowerFunction.php',
                'doctrine\\orm\\query\\ast\\functions\\modfunction' => '/Query/AST/Functions/ModFunction.php',
                'doctrine\\orm\\query\\ast\\functions\\sizefunction' => '/Query/AST/Functions/SizeFunction.php',
                'doctrine\\orm\\query\\ast\\functions\\sqrtfunction' => '/Query/AST/Functions/SqrtFunction.php',
                'doctrine\\orm\\query\\ast\\functions\\substringfunction' => '/Query/AST/Functions/SubstringFunction.php',
                'doctrine\\orm\\query\\ast\\functions\\trimfunction' => '/Query/AST/Functions/TrimFunction.php',
                'doctrine\\orm\\query\\ast\\functions\\upperfunction' => '/Query/AST/Functions/UpperFunction.php',
                'doctrine\\orm\\query\\ast\\generalcaseexpression' => '/Query/AST/GeneralCaseExpression.php',
                'doctrine\\orm\\query\\ast\\groupbyclause' => '/Query/AST/GroupByClause.php',
                'doctrine\\orm\\query\\ast\\havingclause' => '/Query/AST/HavingClause.php',
                'doctrine\\orm\\query\\ast\\identificationvariabledeclaration' => '/Query/AST/IdentificationVariableDeclaration.php',
                'doctrine\\orm\\query\\ast\\indexby' => '/Query/AST/IndexBy.php',
                'doctrine\\orm\\query\\ast\\inexpression' => '/Query/AST/InExpression.php',
                'doctrine\\orm\\query\\ast\\inputparameter' => '/Query/AST/InputParameter.php',
                'doctrine\\orm\\query\\ast\\instanceofexpression' => '/Query/AST/InstanceOfExpression.php',
                'doctrine\\orm\\query\\ast\\join' => '/Query/AST/Join.php',
                'doctrine\\orm\\query\\ast\\joinassociationdeclaration' => '/Query/AST/JoinAssociationDeclaration.php',
                'doctrine\\orm\\query\\ast\\joinassociationpathexpression' => '/Query/AST/JoinAssociationPathExpression.php',
                'doctrine\\orm\\query\\ast\\joinclasspathexpression' => '/Query/AST/JoinClassPathExpression.php',
                'doctrine\\orm\\query\\ast\\likeexpression' => '/Query/AST/LikeExpression.php',
                'doctrine\\orm\\query\\ast\\literal' => '/Query/AST/Literal.php',
                'doctrine\\orm\\query\\ast\\newobjectexpression' => '/Query/AST/NewObjectExpression.php',
                'doctrine\\orm\\query\\ast\\node' => '/Query/AST/Node.php',
                'doctrine\\orm\\query\\ast\\nullcomparisonexpression' => '/Query/AST/NullComparisonExpression.php',
                'doctrine\\orm\\query\\ast\\nullifexpression' => '/Query/AST/NullIfExpression.php',
                'doctrine\\orm\\query\\ast\\orderbyclause' => '/Query/AST/OrderByClause.php',
                'doctrine\\orm\\query\\ast\\orderbyitem' => '/Query/AST/OrderByItem.php',
                'doctrine\\orm\\query\\ast\\parenthesisexpression' => '/Query/AST/ParenthesisExpression.php',
                'doctrine\\orm\\query\\ast\\partialobjectexpression' => '/Query/AST/PartialObjectExpression.php',
                'doctrine\\orm\\query\\ast\\pathexpression' => '/Query/AST/PathExpression.php',
                'doctrine\\orm\\query\\ast\\quantifiedexpression' => '/Query/AST/QuantifiedExpression.php',
                'doctrine\\orm\\query\\ast\\rangevariabledeclaration' => '/Query/AST/RangeVariableDeclaration.php',
                'doctrine\\orm\\query\\ast\\selectclause' => '/Query/AST/SelectClause.php',
                'doctrine\\orm\\query\\ast\\selectexpression' => '/Query/AST/SelectExpression.php',
                'doctrine\\orm\\query\\ast\\selectstatement' => '/Query/AST/SelectStatement.php',
                'doctrine\\orm\\query\\ast\\simplearithmeticexpression' => '/Query/AST/SimpleArithmeticExpression.php',
                'doctrine\\orm\\query\\ast\\simplecaseexpression' => '/Query/AST/SimpleCaseExpression.php',
                'doctrine\\orm\\query\\ast\\simpleselectclause' => '/Query/AST/SimpleSelectClause.php',
                'doctrine\\orm\\query\\ast\\simpleselectexpression' => '/Query/AST/SimpleSelectExpression.php',
                'doctrine\\orm\\query\\ast\\simplewhenclause' => '/Query/AST/SimpleWhenClause.php',
                'doctrine\\orm\\query\\ast\\subselect' => '/Query/AST/Subselect.php',
                'doctrine\\orm\\query\\ast\\subselectfromclause' => '/Query/AST/SubselectFromClause.php',
                'doctrine\\orm\\query\\ast\\updateclause' => '/Query/AST/UpdateClause.php',
                'doctrine\\orm\\query\\ast\\updateitem' => '/Query/AST/UpdateItem.php',
                'doctrine\\orm\\query\\ast\\updatestatement' => '/Query/AST/UpdateStatement.php',
                'doctrine\\orm\\query\\ast\\whenclause' => '/Query/AST/WhenClause.php',
                'doctrine\\orm\\query\\ast\\whereclause' => '/Query/AST/WhereClause.php',
                'doctrine\\orm\\query\\exec\\abstractsqlexecutor' => '/Query/Exec/AbstractSqlExecutor.php',
                'doctrine\\orm\\query\\exec\\multitabledeleteexecutor' => '/Query/Exec/MultiTableDeleteExecutor.php',
                'doctrine\\orm\\query\\exec\\multitableupdateexecutor' => '/Query/Exec/MultiTableUpdateExecutor.php',
                'doctrine\\orm\\query\\exec\\singleselectexecutor' => '/Query/Exec/SingleSelectExecutor.php',
                'doctrine\\orm\\query\\exec\\singletabledeleteupdateexecutor' => '/Query/Exec/SingleTableDeleteUpdateExecutor.php',
                'doctrine\\orm\\query\\expr' => '/Query/Expr.php',
                'doctrine\\orm\\query\\expr\\andx' => '/Query/Expr/Andx.php',
                'doctrine\\orm\\query\\expr\\base' => '/Query/Expr/Base.php',
                'doctrine\\orm\\query\\expr\\comparison' => '/Query/Expr/Comparison.php',
                'doctrine\\orm\\query\\expr\\composite' => '/Query/Expr/Composite.php',
                'doctrine\\orm\\query\\expr\\from' => '/Query/Expr/From.php',
                'doctrine\\orm\\query\\expr\\func' => '/Query/Expr/Func.php',
                'doctrine\\orm\\query\\expr\\groupby' => '/Query/Expr/GroupBy.php',
                'doctrine\\orm\\query\\expr\\join' => '/Query/Expr/Join.php',
                'doctrine\\orm\\query\\expr\\literal' => '/Query/Expr/Literal.php',
                'doctrine\\orm\\query\\expr\\math' => '/Query/Expr/Math.php',
                'doctrine\\orm\\query\\expr\\orderby' => '/Query/Expr/OrderBy.php',
                'doctrine\\orm\\query\\expr\\orx' => '/Query/Expr/Orx.php',
                'doctrine\\orm\\query\\expr\\select' => '/Query/Expr/Select.php',
                'doctrine\\orm\\query\\filter\\sqlfilter' => '/Query/Filter/SQLFilter.php',
                'doctrine\\orm\\query\\filtercollection' => '/Query/FilterCollection.php',
                'doctrine\\orm\\query\\lexer' => '/Query/Lexer.php',
                'doctrine\\orm\\query\\parameter' => '/Query/Parameter.php',
                'doctrine\\orm\\query\\parametertypeinferer' => '/Query/ParameterTypeInferer.php',
                'doctrine\\orm\\query\\parser' => '/Query/Parser.php',
                'doctrine\\orm\\query\\parserresult' => '/Query/ParserResult.php',
                'doctrine\\orm\\query\\printer' => '/Query/Printer.php',
                'doctrine\\orm\\query\\queryexception' => '/Query/QueryException.php',
                'doctrine\\orm\\query\\queryexpressionvisitor' => '/Query/QueryExpressionVisitor.php',
                'doctrine\\orm\\query\\resultsetmapping' => '/Query/ResultSetMapping.php',
                'doctrine\\orm\\query\\resultsetmappingbuilder' => '/Query/ResultSetMappingBuilder.php',
                'doctrine\\orm\\query\\sqlwalker' => '/Query/SqlWalker.php',
                'doctrine\\orm\\query\\treewalker' => '/Query/TreeWalker.php',
                'doctrine\\orm\\query\\treewalkeradapter' => '/Query/TreeWalkerAdapter.php',
                'doctrine\\orm\\query\\treewalkerchain' => '/Query/TreeWalkerChain.php',
                'doctrine\\orm\\querybuilder' => '/QueryBuilder.php',
                'doctrine\\orm\\repository\\defaultrepositoryfactory' => '/Repository/DefaultRepositoryFactory.php',
                'doctrine\\orm\\repository\\repositoryfactory' => '/Repository/RepositoryFactory.php',
                'doctrine\\orm\\tools\\console\\command\\clearcache\\metadatacommand' => '/Tools/Console/Command/ClearCache/MetadataCommand.php',
                'doctrine\\orm\\tools\\console\\command\\clearcache\\querycommand' => '/Tools/Console/Command/ClearCache/QueryCommand.php',
                'doctrine\\orm\\tools\\console\\command\\clearcache\\resultcommand' => '/Tools/Console/Command/ClearCache/ResultCommand.php',
                'doctrine\\orm\\tools\\console\\command\\convertdoctrine1schemacommand' => '/Tools/Console/Command/ConvertDoctrine1SchemaCommand.php',
                'doctrine\\orm\\tools\\console\\command\\convertmappingcommand' => '/Tools/Console/Command/ConvertMappingCommand.php',
                'doctrine\\orm\\tools\\console\\command\\ensureproductionsettingscommand' => '/Tools/Console/Command/EnsureProductionSettingsCommand.php',
                'doctrine\\orm\\tools\\console\\command\\generateentitiescommand' => '/Tools/Console/Command/GenerateEntitiesCommand.php',
                'doctrine\\orm\\tools\\console\\command\\generateproxiescommand' => '/Tools/Console/Command/GenerateProxiesCommand.php',
                'doctrine\\orm\\tools\\console\\command\\generaterepositoriescommand' => '/Tools/Console/Command/GenerateRepositoriesCommand.php',
                'doctrine\\orm\\tools\\console\\command\\infocommand' => '/Tools/Console/Command/InfoCommand.php',
                'doctrine\\orm\\tools\\console\\command\\rundqlcommand' => '/Tools/Console/Command/RunDqlCommand.php',
                'doctrine\\orm\\tools\\console\\command\\schematool\\abstractcommand' => '/Tools/Console/Command/SchemaTool/AbstractCommand.php',
                'doctrine\\orm\\tools\\console\\command\\schematool\\createcommand' => '/Tools/Console/Command/SchemaTool/CreateCommand.php',
                'doctrine\\orm\\tools\\console\\command\\schematool\\dropcommand' => '/Tools/Console/Command/SchemaTool/DropCommand.php',
                'doctrine\\orm\\tools\\console\\command\\schematool\\updatecommand' => '/Tools/Console/Command/SchemaTool/UpdateCommand.php',
                'doctrine\\orm\\tools\\console\\command\\validateschemacommand' => '/Tools/Console/Command/ValidateSchemaCommand.php',
                'doctrine\\orm\\tools\\console\\consolerunner' => '/Tools/Console/ConsoleRunner.php',
                'doctrine\\orm\\tools\\console\\helper\\entitymanagerhelper' => '/Tools/Console/Helper/EntityManagerHelper.php',
                'doctrine\\orm\\tools\\console\\metadatafilter' => '/Tools/Console/MetadataFilter.php',
                'doctrine\\orm\\tools\\convertdoctrine1schema' => '/Tools/ConvertDoctrine1Schema.php',
                'doctrine\\orm\\tools\\debugunitofworklistener' => '/Tools/DebugUnitOfWorkListener.php',
                'doctrine\\orm\\tools\\disconnectedclassmetadatafactory' => '/Tools/DisconnectedClassMetadataFactory.php',
                'doctrine\\orm\\tools\\entitygenerator' => '/Tools/EntityGenerator.php',
                'doctrine\\orm\\tools\\entityrepositorygenerator' => '/Tools/EntityRepositoryGenerator.php',
                'doctrine\\orm\\tools\\event\\generateschemaeventargs' => '/Tools/Event/GenerateSchemaEventArgs.php',
                'doctrine\\orm\\tools\\event\\generateschematableeventargs' => '/Tools/Event/GenerateSchemaTableEventArgs.php',
                'doctrine\\orm\\tools\\export\\classmetadataexporter' => '/Tools/Export/ClassMetadataExporter.php',
                'doctrine\\orm\\tools\\export\\driver\\abstractexporter' => '/Tools/Export/Driver/AbstractExporter.php',
                'doctrine\\orm\\tools\\export\\driver\\annotationexporter' => '/Tools/Export/Driver/AnnotationExporter.php',
                'doctrine\\orm\\tools\\export\\driver\\phpexporter' => '/Tools/Export/Driver/PhpExporter.php',
                'doctrine\\orm\\tools\\export\\driver\\xmlexporter' => '/Tools/Export/Driver/XmlExporter.php',
                'doctrine\\orm\\tools\\export\\driver\\yamlexporter' => '/Tools/Export/Driver/YamlExporter.php',
                'doctrine\\orm\\tools\\export\\exportexception' => '/Tools/Export/ExportException.php',
                'doctrine\\orm\\tools\\pagination\\countoutputwalker' => '/Tools/Pagination/CountOutputWalker.php',
                'doctrine\\orm\\tools\\pagination\\countwalker' => '/Tools/Pagination/CountWalker.php',
                'doctrine\\orm\\tools\\pagination\\limitsubqueryoutputwalker' => '/Tools/Pagination/LimitSubqueryOutputWalker.php',
                'doctrine\\orm\\tools\\pagination\\limitsubquerywalker' => '/Tools/Pagination/LimitSubqueryWalker.php',
                'doctrine\\orm\\tools\\pagination\\paginator' => '/Tools/Pagination/Paginator.php',
                'doctrine\\orm\\tools\\pagination\\whereinwalker' => '/Tools/Pagination/WhereInWalker.php',
                'doctrine\\orm\\tools\\resolvetargetentitylistener' => '/Tools/ResolveTargetEntityListener.php',
                'doctrine\\orm\\tools\\schematool' => '/Tools/SchemaTool.php',
                'doctrine\\orm\\tools\\schemavalidator' => '/Tools/SchemaValidator.php',
                'doctrine\\orm\\tools\\setup' => '/Tools/Setup.php',
                'doctrine\\orm\\tools\\toolevents' => '/Tools/ToolEvents.php',
                'doctrine\\orm\\tools\\toolsexception' => '/Tools/ToolsException.php',
                'doctrine\\orm\\transactionrequiredexception' => '/TransactionRequiredException.php',
                'doctrine\\orm\\unexpectedresultexception' => '/UnexpectedResultException.php',
                'doctrine\\orm\\unitofwork' => '/UnitOfWork.php',
                'doctrine\\orm\\version' => '/Version.php'
            );
        }
        $cn = strtolower($class);
        if (isset($classes[$cn])) {
            require __DIR__ . $classes[$cn];
        }
    },
    true,
    false
);
// @codeCoverageIgnoreEnd