Completed
Push — master ( 22bf77...661552 )
by Marco
22s queued 17s
created
lib/Doctrine/ORM/Tools/SchemaTool.php 1 patch
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -176,11 +176,11 @@  discard block
 block discarded – undo
176 176
                     $pkColumns = [];
177 177
 
178 178
                     foreach ($class->getDeclaredPropertiesIterator() as $fieldName => $property) {
179
-                        if (! ($property instanceof FieldMetadata)) {
179
+                        if ( ! ($property instanceof FieldMetadata)) {
180 180
                             continue;
181 181
                         }
182 182
 
183
-                        if (! $class->isInheritedProperty($fieldName)) {
183
+                        if ( ! $class->isInheritedProperty($fieldName)) {
184 184
                             $columnName = $this->platform->quoteIdentifier($property->getColumnName());
185 185
 
186 186
                             $this->gatherColumn($class, $property, $table);
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
                             }
216 216
                         }
217 217
 
218
-                        if (! empty($inheritedKeyColumns)) {
218
+                        if ( ! empty($inheritedKeyColumns)) {
219 219
                             // Add a FK constraint on the ID column
220 220
                             $rootClass = $this->em->getClassMetadata($class->getRootClassName());
221 221
 
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
                 }
261 261
             }
262 262
 
263
-            if (! $table->hasIndex('primary')) {
263
+            if ( ! $table->hasIndex('primary')) {
264 264
                 $table->setPrimaryKey($pkColumns);
265 265
             }
266 266
 
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
             $processedClasses[$class->getClassName()] = true;
321 321
 
322 322
             foreach ($class->getDeclaredPropertiesIterator() as $property) {
323
-                if (! $property instanceof FieldMetadata
323
+                if ( ! $property instanceof FieldMetadata
324 324
                     || ! $property->hasValueGenerator()
325 325
                     || $property->getValueGenerator()->getType() !== GeneratorType::SEQUENCE
326 326
                     || $class->getClassName() !== $class->getRootClassName()) {
@@ -329,7 +329,7 @@  discard block
 block discarded – undo
329 329
 
330 330
                 $quotedName = $this->platform->quoteIdentifier($property->getValueGenerator()->getDefinition()['sequenceName']);
331 331
 
332
-                if (! $schema->hasSequence($quotedName)) {
332
+                if ( ! $schema->hasSequence($quotedName)) {
333 333
                     $schema->createSequence($quotedName, $property->getValueGenerator()->getDefinition()['allocationSize']);
334 334
                 }
335 335
             }
@@ -342,7 +342,7 @@  discard block
 block discarded – undo
342 342
             }
343 343
         }
344 344
 
345
-        if (! $this->platform->supportsSchemas() && ! $this->platform->canEmulateSchemas()) {
345
+        if ( ! $this->platform->supportsSchemas() && ! $this->platform->canEmulateSchemas()) {
346 346
             $schema->visit(new RemoveNamespacedAssets());
347 347
         }
348 348
 
@@ -381,7 +381,7 @@  discard block
 block discarded – undo
381 381
                 break;
382 382
         }
383 383
 
384
-        if (! empty($discrColumn->getColumnDefinition())) {
384
+        if ( ! empty($discrColumn->getColumnDefinition())) {
385 385
             $options['columnDefinition'] = $discrColumn->getColumnDefinition();
386 386
         }
387 387
 
@@ -399,7 +399,7 @@  discard block
 block discarded – undo
399 399
         $pkColumns = [];
400 400
 
401 401
         foreach ($class->getDeclaredPropertiesIterator() as $fieldName => $property) {
402
-            if (! ($property instanceof FieldMetadata)) {
402
+            if ( ! ($property instanceof FieldMetadata)) {
403 403
                 continue;
404 404
             }
405 405
 
@@ -514,7 +514,7 @@  discard block
 block discarded – undo
514 514
     private function gatherRelationsSql($class, $table, $schema, &$addedFks, &$blacklistedFks)
515 515
     {
516 516
         foreach ($class->getDeclaredPropertiesIterator() as $fieldName => $property) {
517
-            if (! ($property instanceof AssociationMetadata)) {
517
+            if ( ! ($property instanceof AssociationMetadata)) {
518 518
                 continue;
519 519
             }
520 520
 
@@ -522,7 +522,7 @@  discard block
 block discarded – undo
522 522
                 continue;
523 523
             }
524 524
 
525
-            if (! $property->isOwningSide()) {
525
+            if ( ! $property->isOwningSide()) {
526 526
                 continue;
527 527
             }
528 528
 
@@ -612,7 +612,7 @@  discard block
 block discarded – undo
612 612
         $idColumns        = $class->getIdentifierColumns($this->em);
613 613
         $idColumnNameList = array_keys($idColumns);
614 614
 
615
-        if (! in_array($referencedColumnName, $idColumnNameList, true)) {
615
+        if ( ! in_array($referencedColumnName, $idColumnNameList, true)) {
616 616
             return null;
617 617
         }
618 618
 
@@ -620,7 +620,7 @@  discard block
 block discarded – undo
620 620
         foreach ($class->getIdentifierFieldNames() as $fieldName) {
621 621
             $property = $class->getProperty($fieldName);
622 622
 
623
-            if (! ($property instanceof AssociationMetadata)) {
623
+            if ( ! ($property instanceof AssociationMetadata)) {
624 624
                 continue;
625 625
             }
626 626
 
@@ -676,7 +676,7 @@  discard block
 block discarded – undo
676 676
                 $joinColumn->getReferencedColumnName()
677 677
             );
678 678
 
679
-            if (! $definingClass) {
679
+            if ( ! $definingClass) {
680 680
                 throw MissingColumnException::fromColumnSourceAndTarget(
681 681
                     $joinColumn->getReferencedColumnName(),
682 682
                     $mapping->getSourceEntity(),
@@ -691,14 +691,14 @@  discard block
 block discarded – undo
691 691
             $localColumns[]      = $quotedColumnName;
692 692
             $foreignColumns[]    = $quotedReferencedColumnName;
693 693
 
694
-            if (! $theJoinTable->hasColumn($quotedColumnName)) {
694
+            if ( ! $theJoinTable->hasColumn($quotedColumnName)) {
695 695
                 // Only add the column to the table if it does not exist already.
696 696
                 // It might exist already if the foreign key is mapped into a regular
697 697
                 // property as well.
698 698
                 $property  = $definingClass->getProperty($referencedFieldName);
699 699
                 $columnDef = null;
700 700
 
701
-                if (! empty($joinColumn->getColumnDefinition())) {
701
+                if ( ! empty($joinColumn->getColumnDefinition())) {
702 702
                     $columnDef = $joinColumn->getColumnDefinition();
703 703
                 } elseif ($property->getColumnDefinition()) {
704 704
                     $columnDef = $property->getColumnDefinition();
@@ -732,7 +732,7 @@  discard block
 block discarded – undo
732 732
                 $uniqueConstraints[] = ['columns' => [$quotedColumnName]];
733 733
             }
734 734
 
735
-            if (! empty($joinColumn->getOnDelete())) {
735
+            if ( ! empty($joinColumn->getOnDelete())) {
736 736
                 $fkOptions['onDelete'] = $joinColumn->getOnDelete();
737 737
             }
738 738
         }
@@ -743,7 +743,7 @@  discard block
 block discarded – undo
743 743
             $theJoinTable->addUniqueIndex($unique['columns'], is_numeric($indexName) ? null : $indexName);
744 744
         }
745 745
 
746
-        $compositeName = $theJoinTable->getName() . '.' . implode('', $localColumns);
746
+        $compositeName = $theJoinTable->getName().'.'.implode('', $localColumns);
747 747
 
748 748
         if (isset($addedFks[$compositeName])
749 749
             && ($foreignTableName !== $addedFks[$compositeName]['foreignTableName']
@@ -760,7 +760,7 @@  discard block
 block discarded – undo
760 760
             }
761 761
 
762 762
             $blacklistedFks[$compositeName] = true;
763
-        } elseif (! isset($blacklistedFks[$compositeName])) {
763
+        } elseif ( ! isset($blacklistedFks[$compositeName])) {
764 764
             $addedFks[$compositeName] = [
765 765
                 'foreignTableName' => $foreignTableName,
766 766
                 'foreignColumns'   => $foreignColumns,
@@ -842,7 +842,7 @@  discard block
 block discarded – undo
842 842
         $fullSchema = $sm->createSchema();
843 843
 
844 844
         foreach ($fullSchema->getTables() as $table) {
845
-            if (! $schema->hasTable($table->getName())) {
845
+            if ( ! $schema->hasTable($table->getName())) {
846 846
                 foreach ($table->getForeignKeys() as $foreignKey) {
847 847
                     /** @var $foreignKey \Doctrine\DBAL\Schema\ForeignKeyConstraint */
848 848
                     if ($schema->hasTable($foreignKey->getForeignTableName())) {
@@ -867,7 +867,7 @@  discard block
 block discarded – undo
867 867
                 if ($table->hasPrimaryKey()) {
868 868
                     $columns = $table->getPrimaryKey()->getColumns();
869 869
                     if (count($columns) === 1) {
870
-                        $checkSequence = $table->getName() . '_' . $columns[0] . '_seq';
870
+                        $checkSequence = $table->getName().'_'.$columns[0].'_seq';
871 871
                         if ($fullSchema->hasSequence($checkSequence)) {
872 872
                             $visitor->acceptSequence($fullSchema->getSequence($checkSequence));
873 873
                         }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Tools/ToolsException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,6 +14,6 @@
 block discarded – undo
14 14
 {
15 15
     public static function schemaToolFailure(string $sql, Throwable $e) : self
16 16
     {
17
-        return new self("Schema-Tool failed with Error '" . $e->getMessage() . "' while executing DDL: " . $sql, 0, $e);
17
+        return new self("Schema-Tool failed with Error '".$e->getMessage()."' while executing DDL: ".$sql, 0, $e);
18 18
     }
19 19
 }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Tools/DebugUnitOfWorkListener.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -61,28 +61,28 @@  discard block
 block discarded – undo
61 61
         $fh = fopen($this->file, 'xb+');
62 62
 
63 63
         if (count($identityMap) === 0) {
64
-            fwrite($fh, 'Flush Operation [' . $this->context . "] - Empty identity map.\n");
64
+            fwrite($fh, 'Flush Operation ['.$this->context."] - Empty identity map.\n");
65 65
 
66 66
             return;
67 67
         }
68 68
 
69
-        fwrite($fh, 'Flush Operation [' . $this->context . "] - Dumping identity map:\n");
69
+        fwrite($fh, 'Flush Operation ['.$this->context."] - Dumping identity map:\n");
70 70
 
71 71
         foreach ($identityMap as $className => $map) {
72
-            fwrite($fh, 'Class: ' . $className . "\n");
72
+            fwrite($fh, 'Class: '.$className."\n");
73 73
 
74 74
             foreach ($map as $entity) {
75
-                fwrite($fh, ' Entity: ' . $this->getIdString($entity, $uow) . ' ' . spl_object_id($entity) . "\n");
75
+                fwrite($fh, ' Entity: '.$this->getIdString($entity, $uow).' '.spl_object_id($entity)."\n");
76 76
                 fwrite($fh, "  Associations:\n");
77 77
 
78 78
                 $cm = $em->getClassMetadata($className);
79 79
 
80 80
                 foreach ($cm->getDeclaredPropertiesIterator() as $field => $association) {
81
-                    if (! ($association instanceof AssociationMetadata)) {
81
+                    if ( ! ($association instanceof AssociationMetadata)) {
82 82
                         continue;
83 83
                     }
84 84
 
85
-                    fwrite($fh, '   ' . $field . ' ');
85
+                    fwrite($fh, '   '.$field.' ');
86 86
 
87 87
                     $value = $association->getValue($entity);
88 88
 
@@ -97,21 +97,21 @@  discard block
 block discarded – undo
97 97
                             fwrite($fh, '[PROXY] ');
98 98
                         }
99 99
 
100
-                        fwrite($fh, $this->getIdString($value, $uow) . ' ' . spl_object_id($value) . "\n");
100
+                        fwrite($fh, $this->getIdString($value, $uow).' '.spl_object_id($value)."\n");
101 101
                     } else {
102 102
                         $initialized = ! ($value instanceof PersistentCollection) || $value->isInitialized();
103 103
 
104 104
                         if ($initialized) {
105
-                            fwrite($fh, '[INITIALIZED] ' . $this->getType($value) . ' ' . count($value) . " elements\n");
105
+                            fwrite($fh, '[INITIALIZED] '.$this->getType($value).' '.count($value)." elements\n");
106 106
 
107 107
                             foreach ($value as $obj) {
108
-                                fwrite($fh, '    ' . $this->getIdString($obj, $uow) . ' ' . spl_object_id($obj) . "\n");
108
+                                fwrite($fh, '    '.$this->getIdString($obj, $uow).' '.spl_object_id($obj)."\n");
109 109
                             }
110 110
                         } else {
111
-                            fwrite($fh, '[PROXY] ' . $this->getType($value) . " unknown element size\n");
111
+                            fwrite($fh, '[PROXY] '.$this->getType($value)." unknown element size\n");
112 112
 
113 113
                             foreach ($value->unwrap() as $obj) {
114
-                                fwrite($fh, '    ' . $this->getIdString($obj, $uow) . ' ' . spl_object_id($obj) . "\n");
114
+                                fwrite($fh, '    '.$this->getIdString($obj, $uow).' '.spl_object_id($obj)."\n");
115 115
                             }
116 116
                         }
117 117
                     }
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
             $idstring = '';
151 151
 
152 152
             foreach ($ids as $k => $v) {
153
-                $idstring .= $k . '=' . $v;
153
+                $idstring .= $k.'='.$v;
154 154
             }
155 155
         } else {
156 156
             $idstring = 'NEWOBJECT ';
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Tools/Pagination/Paginator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
         /** @var Query $countQuery */
222 222
         $countQuery = $this->cloneQuery($this->query);
223 223
 
224
-        if (! $countQuery->hasHint(CountWalker::HINT_DISTINCT)) {
224
+        if ( ! $countQuery->hasHint(CountWalker::HINT_DISTINCT)) {
225 225
             $countQuery->setHint(CountWalker::HINT_DISTINCT, true);
226 226
         }
227 227
 
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
         foreach ($parameters as $key => $parameter) {
249 249
             $parameterName = $parameter->getName();
250 250
 
251
-            if (! (isset($parameterMappings[$parameterName]) || array_key_exists($parameterName, $parameterMappings))) {
251
+            if ( ! (isset($parameterMappings[$parameterName]) || array_key_exists($parameterName, $parameterMappings))) {
252 252
                 unset($parameters[$key]);
253 253
             }
254 254
         }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Tools/Pagination/RowNumberOverFunction.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,9 +28,9 @@
 block discarded – undo
28 28
      */
29 29
     public function getSql(SqlWalker $sqlWalker)
30 30
     {
31
-        return 'ROW_NUMBER() OVER(' . trim($sqlWalker->walkOrderByClause(
31
+        return 'ROW_NUMBER() OVER('.trim($sqlWalker->walkOrderByClause(
32 32
             $this->orderByClause
33
-        )) . ')';
33
+        )).')';
34 34
     }
35 35
 
36 36
     /**
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Tools/Pagination/WhereInWalker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
                 [$pathExpression]
90 90
             );
91 91
             $expression                                       = new InExpression($arithmeticExpression);
92
-            $expression->literals[]                           = new InputParameter(':' . self::PAGINATOR_ID_ALIAS);
92
+            $expression->literals[]                           = new InputParameter(':'.self::PAGINATOR_ID_ALIAS);
93 93
         } else {
94 94
             $expression      = new NullComparisonExpression($pathExpression);
95 95
             $expression->not = false;
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Tools/AttachEntityListenersListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
         /** @var ClassMetadata $metadata */
43 43
         $metadata = $event->getClassMetadata();
44 44
 
45
-        if (! isset($this->entityListeners[$metadata->getClassName()])) {
45
+        if ( ! isset($this->entityListeners[$metadata->getClassName()])) {
46 46
             return;
47 47
         }
48 48
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Query.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -254,7 +254,7 @@  discard block
 block discarded – undo
254 254
 
255 255
         // Check query cache.
256 256
         $queryCache = $this->getQueryCacheDriver();
257
-        if (! ($this->useQueryCache && $queryCache)) {
257
+        if ( ! ($this->useQueryCache && $queryCache)) {
258 258
             $parser = new Parser($this);
259 259
 
260 260
             $this->parserResult = $parser->parse();
@@ -391,7 +391,7 @@  discard block
 block discarded – undo
391 391
             $value = $parameter->getValue();
392 392
             $rsm   = $this->getResultSetMapping();
393 393
 
394
-            if (! isset($paramMappings[$key])) {
394
+            if ( ! isset($paramMappings[$key])) {
395 395
                 throw QueryException::unknownParameter($key);
396 396
             }
397 397
 
@@ -699,7 +699,7 @@  discard block
 block discarded – undo
699 699
     public function setLockMode($lockMode)
700 700
     {
701 701
         if (in_array($lockMode, [LockMode::NONE, LockMode::PESSIMISTIC_READ, LockMode::PESSIMISTIC_WRITE], true)) {
702
-            if (! $this->em->getConnection()->isTransactionActive()) {
702
+            if ( ! $this->em->getConnection()->isTransactionActive()) {
703 703
                 throw TransactionRequiredException::transactionRequired();
704 704
             }
705 705
         }
@@ -740,11 +740,11 @@  discard block
 block discarded – undo
740 740
             ->getName();
741 741
 
742 742
         return md5(
743
-            $this->getDQL() . serialize($this->hints) .
744
-            '&platform=' . $platform .
745
-            ($this->em->hasFilters() ? $this->em->getFilters()->getHash() : '') .
746
-            '&firstResult=' . $this->firstResult . '&maxResult=' . $this->maxResults .
747
-            '&hydrationMode=' . $this->hydrationMode . '&types=' . serialize($this->parsedTypes) . 'DOCTRINE_QUERY_CACHE_SALT'
743
+            $this->getDQL().serialize($this->hints).
744
+            '&platform='.$platform.
745
+            ($this->em->hasFilters() ? $this->em->getFilters()->getHash() : '').
746
+            '&firstResult='.$this->firstResult.'&maxResult='.$this->maxResults.
747
+            '&hydrationMode='.$this->hydrationMode.'&types='.serialize($this->parsedTypes).'DOCTRINE_QUERY_CACHE_SALT'
748 748
         );
749 749
     }
750 750
 
@@ -753,7 +753,7 @@  discard block
 block discarded – undo
753 753
      */
754 754
     protected function getHash()
755 755
     {
756
-        return sha1(parent::getHash() . '-' . $this->firstResult . '-' . $this->maxResults);
756
+        return sha1(parent::getHash().'-'.$this->firstResult.'-'.$this->maxResults);
757 757
     }
758 758
 
759 759
     /**
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Annotation/DoctrineAnnotations.php 1 patch
Spacing   +41 added lines, -41 removed lines patch added patch discarded remove patch
@@ -2,44 +2,44 @@
 block discarded – undo
2 2
 
3 3
 declare(strict_types=1);
4 4
 
5
-require_once __DIR__ . '/Annotation.php';
6
-require_once __DIR__ . '/AssociationOverride.php';
7
-require_once __DIR__ . '/AssociationOverrides.php';
8
-require_once __DIR__ . '/AttributeOverride.php';
9
-require_once __DIR__ . '/AttributeOverrides.php';
10
-require_once __DIR__ . '/Cache.php';
11
-require_once __DIR__ . '/ChangeTrackingPolicy.php';
12
-require_once __DIR__ . '/Column.php';
13
-require_once __DIR__ . '/CustomIdGenerator.php';
14
-require_once __DIR__ . '/DiscriminatorColumn.php';
15
-require_once __DIR__ . '/DiscriminatorMap.php';
16
-require_once __DIR__ . '/Embeddable.php';
17
-require_once __DIR__ . '/Embedded.php';
18
-require_once __DIR__ . '/Entity.php';
19
-require_once __DIR__ . '/EntityListeners.php';
20
-require_once __DIR__ . '/GeneratedValue.php';
21
-require_once __DIR__ . '/HasLifecycleCallbacks.php';
22
-require_once __DIR__ . '/Id.php';
23
-require_once __DIR__ . '/Index.php';
24
-require_once __DIR__ . '/InheritanceType.php';
25
-require_once __DIR__ . '/JoinColumn.php';
26
-require_once __DIR__ . '/JoinColumns.php';
27
-require_once __DIR__ . '/JoinTable.php';
28
-require_once __DIR__ . '/ManyToMany.php';
29
-require_once __DIR__ . '/ManyToOne.php';
30
-require_once __DIR__ . '/MappedSuperclass.php';
31
-require_once __DIR__ . '/OneToMany.php';
32
-require_once __DIR__ . '/OneToOne.php';
33
-require_once __DIR__ . '/OrderBy.php';
34
-require_once __DIR__ . '/PrePersist.php';
35
-require_once __DIR__ . '/PostLoad.php';
36
-require_once __DIR__ . '/PostPersist.php';
37
-require_once __DIR__ . '/PostRemove.php';
38
-require_once __DIR__ . '/PostUpdate.php';
39
-require_once __DIR__ . '/PreFlush.php';
40
-require_once __DIR__ . '/PreRemove.php';
41
-require_once __DIR__ . '/PreUpdate.php';
42
-require_once __DIR__ . '/SequenceGenerator.php';
43
-require_once __DIR__ . '/Table.php';
44
-require_once __DIR__ . '/UniqueConstraint.php';
45
-require_once __DIR__ . '/Version.php';
5
+require_once __DIR__.'/Annotation.php';
6
+require_once __DIR__.'/AssociationOverride.php';
7
+require_once __DIR__.'/AssociationOverrides.php';
8
+require_once __DIR__.'/AttributeOverride.php';
9
+require_once __DIR__.'/AttributeOverrides.php';
10
+require_once __DIR__.'/Cache.php';
11
+require_once __DIR__.'/ChangeTrackingPolicy.php';
12
+require_once __DIR__.'/Column.php';
13
+require_once __DIR__.'/CustomIdGenerator.php';
14
+require_once __DIR__.'/DiscriminatorColumn.php';
15
+require_once __DIR__.'/DiscriminatorMap.php';
16
+require_once __DIR__.'/Embeddable.php';
17
+require_once __DIR__.'/Embedded.php';
18
+require_once __DIR__.'/Entity.php';
19
+require_once __DIR__.'/EntityListeners.php';
20
+require_once __DIR__.'/GeneratedValue.php';
21
+require_once __DIR__.'/HasLifecycleCallbacks.php';
22
+require_once __DIR__.'/Id.php';
23
+require_once __DIR__.'/Index.php';
24
+require_once __DIR__.'/InheritanceType.php';
25
+require_once __DIR__.'/JoinColumn.php';
26
+require_once __DIR__.'/JoinColumns.php';
27
+require_once __DIR__.'/JoinTable.php';
28
+require_once __DIR__.'/ManyToMany.php';
29
+require_once __DIR__.'/ManyToOne.php';
30
+require_once __DIR__.'/MappedSuperclass.php';
31
+require_once __DIR__.'/OneToMany.php';
32
+require_once __DIR__.'/OneToOne.php';
33
+require_once __DIR__.'/OrderBy.php';
34
+require_once __DIR__.'/PrePersist.php';
35
+require_once __DIR__.'/PostLoad.php';
36
+require_once __DIR__.'/PostPersist.php';
37
+require_once __DIR__.'/PostRemove.php';
38
+require_once __DIR__.'/PostUpdate.php';
39
+require_once __DIR__.'/PreFlush.php';
40
+require_once __DIR__.'/PreRemove.php';
41
+require_once __DIR__.'/PreUpdate.php';
42
+require_once __DIR__.'/SequenceGenerator.php';
43
+require_once __DIR__.'/Table.php';
44
+require_once __DIR__.'/UniqueConstraint.php';
45
+require_once __DIR__.'/Version.php';
Please login to merge, or discard this patch.