Complex classes like ClassMetadata often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use ClassMetadata, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
52 | class ClassMetadata implements BaseClassMetadata |
||
53 | { |
||
54 | /* The Id generator types. */ |
||
55 | /** |
||
56 | * AUTO means Doctrine will automatically create a new \MongoDB\BSON\ObjectId instance for us. |
||
57 | */ |
||
58 | public const GENERATOR_TYPE_AUTO = 1; |
||
59 | |||
60 | /** |
||
61 | * INCREMENT means a separate collection is used for maintaining and incrementing id generation. |
||
62 | * Offers full portability. |
||
63 | */ |
||
64 | public const GENERATOR_TYPE_INCREMENT = 2; |
||
65 | |||
66 | /** |
||
67 | * UUID means Doctrine will generate a uuid for us. |
||
68 | */ |
||
69 | public const GENERATOR_TYPE_UUID = 3; |
||
70 | |||
71 | /** |
||
72 | * ALNUM means Doctrine will generate Alpha-numeric string identifiers, using the INCREMENT |
||
73 | * generator to ensure identifier uniqueness |
||
74 | */ |
||
75 | public const GENERATOR_TYPE_ALNUM = 4; |
||
76 | |||
77 | /** |
||
78 | * CUSTOM means Doctrine expect a class parameter. It will then try to initiate that class |
||
79 | * and pass other options to the generator. It will throw an Exception if the class |
||
80 | * does not exist or if an option was passed for that there is not setter in the new |
||
81 | * generator class. |
||
82 | * |
||
83 | * The class will have to be a subtype of AbstractIdGenerator. |
||
84 | */ |
||
85 | public const GENERATOR_TYPE_CUSTOM = 5; |
||
86 | |||
87 | /** |
||
88 | * NONE means Doctrine will not generate any id for us and you are responsible for manually |
||
89 | * assigning an id. |
||
90 | */ |
||
91 | public const GENERATOR_TYPE_NONE = 6; |
||
92 | |||
93 | /** |
||
94 | * Default discriminator field name. |
||
95 | * |
||
96 | * This is used for associations value for associations where a that do not define a "targetDocument" or |
||
97 | * "discriminatorField" option in their mapping. |
||
98 | */ |
||
99 | public const DEFAULT_DISCRIMINATOR_FIELD = '_doctrine_class_name'; |
||
100 | |||
101 | public const REFERENCE_ONE = 1; |
||
102 | public const REFERENCE_MANY = 2; |
||
103 | public const EMBED_ONE = 3; |
||
104 | public const EMBED_MANY = 4; |
||
105 | public const MANY = 'many'; |
||
106 | public const ONE = 'one'; |
||
107 | |||
108 | /** |
||
109 | * The types of storeAs references |
||
110 | */ |
||
111 | public const REFERENCE_STORE_AS_ID = 'id'; |
||
112 | public const REFERENCE_STORE_AS_DB_REF = 'dbRef'; |
||
113 | public const REFERENCE_STORE_AS_DB_REF_WITH_DB = 'dbRefWithDb'; |
||
114 | public const REFERENCE_STORE_AS_REF = 'ref'; |
||
115 | |||
116 | /* The inheritance mapping types */ |
||
117 | /** |
||
118 | * NONE means the class does not participate in an inheritance hierarchy |
||
119 | * and therefore does not need an inheritance mapping type. |
||
120 | */ |
||
121 | public const INHERITANCE_TYPE_NONE = 1; |
||
122 | |||
123 | /** |
||
124 | * SINGLE_COLLECTION means the class will be persisted according to the rules of |
||
125 | * <tt>Single Collection Inheritance</tt>. |
||
126 | */ |
||
127 | public const INHERITANCE_TYPE_SINGLE_COLLECTION = 2; |
||
128 | |||
129 | /** |
||
130 | * COLLECTION_PER_CLASS means the class will be persisted according to the rules |
||
131 | * of <tt>Concrete Collection Inheritance</tt>. |
||
132 | */ |
||
133 | public const INHERITANCE_TYPE_COLLECTION_PER_CLASS = 3; |
||
134 | |||
135 | /** |
||
136 | * DEFERRED_IMPLICIT means that changes of entities are calculated at commit-time |
||
137 | * by doing a property-by-property comparison with the original data. This will |
||
138 | * be done for all entities that are in MANAGED state at commit-time. |
||
139 | * |
||
140 | * This is the default change tracking policy. |
||
141 | */ |
||
142 | public const CHANGETRACKING_DEFERRED_IMPLICIT = 1; |
||
143 | |||
144 | /** |
||
145 | * DEFERRED_EXPLICIT means that changes of entities are calculated at commit-time |
||
146 | * by doing a property-by-property comparison with the original data. This will |
||
147 | * be done only for entities that were explicitly saved (through persist() or a cascade). |
||
148 | */ |
||
149 | public const CHANGETRACKING_DEFERRED_EXPLICIT = 2; |
||
150 | |||
151 | /** |
||
152 | * NOTIFY means that Doctrine relies on the entities sending out notifications |
||
153 | * when their properties change. Such entity classes must implement |
||
154 | * the <tt>NotifyPropertyChanged</tt> interface. |
||
155 | */ |
||
156 | public const CHANGETRACKING_NOTIFY = 3; |
||
157 | |||
158 | /** |
||
159 | * SET means that fields will be written to the database using a $set operator |
||
160 | */ |
||
161 | public const STORAGE_STRATEGY_SET = 'set'; |
||
162 | |||
163 | /** |
||
164 | * INCREMENT means that fields will be written to the database by calculating |
||
165 | * the difference and using the $inc operator |
||
166 | */ |
||
167 | public const STORAGE_STRATEGY_INCREMENT = 'increment'; |
||
168 | |||
169 | public const STORAGE_STRATEGY_PUSH_ALL = 'pushAll'; |
||
170 | public const STORAGE_STRATEGY_ADD_TO_SET = 'addToSet'; |
||
171 | public const STORAGE_STRATEGY_ATOMIC_SET = 'atomicSet'; |
||
172 | public const STORAGE_STRATEGY_ATOMIC_SET_ARRAY = 'atomicSetArray'; |
||
173 | public const STORAGE_STRATEGY_SET_ARRAY = 'setArray'; |
||
174 | |||
175 | private const ALLOWED_GRIDFS_FIELDS = ['_id', 'chunkSize', 'filename', 'length', 'metadata', 'uploadDate']; |
||
176 | |||
177 | /** |
||
178 | * READ-ONLY: The name of the mongo database the document is mapped to. |
||
179 | * |
||
180 | * @var string|null |
||
181 | */ |
||
182 | public $db; |
||
183 | |||
184 | /** |
||
185 | * READ-ONLY: The name of the mongo collection the document is mapped to. |
||
186 | * |
||
187 | * @var string |
||
188 | */ |
||
189 | public $collection; |
||
190 | |||
191 | /** |
||
192 | * READ-ONLY: The name of the GridFS bucket the document is mapped to. |
||
193 | * |
||
194 | * @var string |
||
195 | */ |
||
196 | public $bucketName = 'fs'; |
||
197 | |||
198 | /** |
||
199 | * READ-ONLY: If the collection should be a fixed size. |
||
200 | * |
||
201 | * @var bool |
||
202 | */ |
||
203 | public $collectionCapped = false; |
||
204 | |||
205 | /** |
||
206 | * READ-ONLY: If the collection is fixed size, its size in bytes. |
||
207 | * |
||
208 | * @var int|null |
||
209 | */ |
||
210 | public $collectionSize; |
||
211 | |||
212 | /** |
||
213 | * READ-ONLY: If the collection is fixed size, the maximum number of elements to store in the collection. |
||
214 | * |
||
215 | * @var int|null |
||
216 | */ |
||
217 | public $collectionMax; |
||
218 | |||
219 | /** |
||
220 | * READ-ONLY Describes how MongoDB clients route read operations to the members of a replica set. |
||
221 | * |
||
222 | * @var string|null |
||
223 | */ |
||
224 | public $readPreference; |
||
225 | |||
226 | /** |
||
227 | * READ-ONLY Associated with readPreference Allows to specify criteria so that your application can target read |
||
228 | * operations to specific members, based on custom parameters. |
||
229 | * |
||
230 | * @var string[][] |
||
231 | */ |
||
232 | public $readPreferenceTags = []; |
||
233 | |||
234 | /** |
||
235 | * READ-ONLY: Describes the level of acknowledgement requested from MongoDB for write operations. |
||
236 | * |
||
237 | * @var string|int|null |
||
238 | */ |
||
239 | public $writeConcern; |
||
240 | |||
241 | /** |
||
242 | * READ-ONLY: The field name of the document identifier. |
||
243 | * |
||
244 | * @var string|null |
||
245 | */ |
||
246 | public $identifier; |
||
247 | |||
248 | /** |
||
249 | * READ-ONLY: The array of indexes for the document collection. |
||
250 | * |
||
251 | * @var array |
||
252 | */ |
||
253 | public $indexes = []; |
||
254 | |||
255 | /** |
||
256 | * READ-ONLY: Keys and options describing shard key. Only for sharded collections. |
||
257 | * |
||
258 | * @var array<string, array> |
||
259 | */ |
||
260 | public $shardKey = []; |
||
261 | |||
262 | /** |
||
263 | * READ-ONLY: The name of the document class. |
||
264 | * |
||
265 | * @var string |
||
266 | */ |
||
267 | public $name; |
||
268 | |||
269 | /** |
||
270 | * READ-ONLY: The name of the document class that is at the root of the mapped document inheritance |
||
271 | * hierarchy. If the document is not part of a mapped inheritance hierarchy this is the same |
||
272 | * as {@link $documentName}. |
||
273 | * |
||
274 | * @var string |
||
275 | */ |
||
276 | public $rootDocumentName; |
||
277 | |||
278 | /** |
||
279 | * The name of the custom repository class used for the document class. |
||
280 | * (Optional). |
||
281 | * |
||
282 | * @var string|null |
||
283 | */ |
||
284 | public $customRepositoryClassName; |
||
285 | |||
286 | /** |
||
287 | * READ-ONLY: The names of the parent classes (ancestors). |
||
288 | * |
||
289 | * @var array |
||
290 | */ |
||
291 | public $parentClasses = []; |
||
292 | |||
293 | /** |
||
294 | * READ-ONLY: The names of all subclasses (descendants). |
||
295 | * |
||
296 | * @var array |
||
297 | */ |
||
298 | public $subClasses = []; |
||
299 | |||
300 | /** |
||
301 | * The ReflectionProperty instances of the mapped class. |
||
302 | * |
||
303 | * @var ReflectionProperty[] |
||
304 | */ |
||
305 | public $reflFields = []; |
||
306 | |||
307 | /** |
||
308 | * READ-ONLY: The inheritance mapping type used by the class. |
||
309 | * |
||
310 | * @var int |
||
311 | */ |
||
312 | public $inheritanceType = self::INHERITANCE_TYPE_NONE; |
||
313 | |||
314 | /** |
||
315 | * READ-ONLY: The Id generator type used by the class. |
||
316 | * |
||
317 | * @var int |
||
318 | */ |
||
319 | public $generatorType = self::GENERATOR_TYPE_AUTO; |
||
320 | |||
321 | /** |
||
322 | * READ-ONLY: The Id generator options. |
||
323 | * |
||
324 | * @var array |
||
325 | */ |
||
326 | public $generatorOptions = []; |
||
327 | |||
328 | /** |
||
329 | * READ-ONLY: The ID generator used for generating IDs for this class. |
||
330 | * |
||
331 | * @var AbstractIdGenerator|null |
||
332 | */ |
||
333 | public $idGenerator; |
||
334 | |||
335 | /** |
||
336 | * READ-ONLY: The field mappings of the class. |
||
337 | * Keys are field names and values are mapping definitions. |
||
338 | * |
||
339 | * The mapping definition array has the following values: |
||
340 | * |
||
341 | * - <b>fieldName</b> (string) |
||
342 | * The name of the field in the Document. |
||
343 | * |
||
344 | * - <b>id</b> (boolean, optional) |
||
345 | * Marks the field as the primary key of the document. Multiple fields of an |
||
346 | * document can have the id attribute, forming a composite key. |
||
347 | * |
||
348 | * @var array |
||
349 | */ |
||
350 | public $fieldMappings = []; |
||
351 | |||
352 | /** |
||
353 | * READ-ONLY: The association mappings of the class. |
||
354 | * Keys are field names and values are mapping definitions. |
||
355 | * |
||
356 | * @var array |
||
357 | */ |
||
358 | public $associationMappings = []; |
||
359 | |||
360 | /** |
||
361 | * READ-ONLY: Array of fields to also load with a given method. |
||
362 | * |
||
363 | * @var array |
||
364 | */ |
||
365 | public $alsoLoadMethods = []; |
||
366 | |||
367 | /** |
||
368 | * READ-ONLY: The registered lifecycle callbacks for documents of this class. |
||
369 | * |
||
370 | * @var array |
||
371 | */ |
||
372 | public $lifecycleCallbacks = []; |
||
373 | |||
374 | /** |
||
375 | * READ-ONLY: The discriminator value of this class. |
||
376 | * |
||
377 | * <b>This does only apply to the JOINED and SINGLE_COLLECTION inheritance mapping strategies |
||
378 | * where a discriminator field is used.</b> |
||
379 | * |
||
380 | * @see discriminatorField |
||
381 | * |
||
382 | * @var mixed |
||
383 | */ |
||
384 | public $discriminatorValue; |
||
385 | |||
386 | /** |
||
387 | * READ-ONLY: The discriminator map of all mapped classes in the hierarchy. |
||
388 | * |
||
389 | * <b>This does only apply to the SINGLE_COLLECTION inheritance mapping strategy |
||
390 | * where a discriminator field is used.</b> |
||
391 | * |
||
392 | * @see discriminatorField |
||
393 | * |
||
394 | * @var mixed |
||
395 | */ |
||
396 | public $discriminatorMap = []; |
||
397 | |||
398 | /** |
||
399 | * READ-ONLY: The definition of the discriminator field used in SINGLE_COLLECTION |
||
400 | * inheritance mapping. |
||
401 | * |
||
402 | * @var string|null |
||
403 | */ |
||
404 | public $discriminatorField; |
||
405 | |||
406 | /** |
||
407 | * READ-ONLY: The default value for discriminatorField in case it's not set in the document |
||
408 | * |
||
409 | * @see discriminatorField |
||
410 | * |
||
411 | * @var string|null |
||
412 | */ |
||
413 | public $defaultDiscriminatorValue; |
||
414 | |||
415 | /** |
||
416 | * READ-ONLY: Whether this class describes the mapping of a mapped superclass. |
||
417 | * |
||
418 | * @var bool |
||
419 | */ |
||
420 | public $isMappedSuperclass = false; |
||
421 | |||
422 | /** |
||
423 | * READ-ONLY: Whether this class describes the mapping of a embedded document. |
||
424 | * |
||
425 | * @var bool |
||
426 | */ |
||
427 | public $isEmbeddedDocument = false; |
||
428 | |||
429 | /** |
||
430 | * READ-ONLY: Whether this class describes the mapping of an aggregation result document. |
||
431 | * |
||
432 | * @var bool |
||
433 | */ |
||
434 | public $isQueryResultDocument = false; |
||
435 | |||
436 | /** |
||
437 | * READ-ONLY: Whether this class describes the mapping of a gridFS file |
||
438 | * |
||
439 | * @var bool |
||
440 | */ |
||
441 | public $isFile = false; |
||
442 | |||
443 | /** |
||
444 | * READ-ONLY: The default chunk size in bytes for the file |
||
445 | * |
||
446 | * @var int|null |
||
447 | */ |
||
448 | public $chunkSizeBytes; |
||
449 | |||
450 | /** |
||
451 | * READ-ONLY: The policy used for change-tracking on entities of this class. |
||
452 | * |
||
453 | * @var int |
||
454 | */ |
||
455 | public $changeTrackingPolicy = self::CHANGETRACKING_DEFERRED_IMPLICIT; |
||
456 | |||
457 | /** |
||
458 | * READ-ONLY: A flag for whether or not instances of this class are to be versioned |
||
459 | * with optimistic locking. |
||
460 | * |
||
461 | * @var bool $isVersioned |
||
462 | */ |
||
463 | public $isVersioned = false; |
||
464 | |||
465 | /** |
||
466 | * READ-ONLY: The name of the field which is used for versioning in optimistic locking (if any). |
||
467 | * |
||
468 | * @var string|null $versionField |
||
469 | */ |
||
470 | public $versionField; |
||
471 | |||
472 | /** |
||
473 | * READ-ONLY: A flag for whether or not instances of this class are to allow pessimistic |
||
474 | * locking. |
||
475 | * |
||
476 | * @var bool $isLockable |
||
477 | */ |
||
478 | public $isLockable = false; |
||
479 | |||
480 | /** |
||
481 | * READ-ONLY: The name of the field which is used for locking a document. |
||
482 | * |
||
483 | * @var mixed $lockField |
||
484 | */ |
||
485 | public $lockField; |
||
486 | |||
487 | /** |
||
488 | * The ReflectionClass instance of the mapped class. |
||
489 | * |
||
490 | * @var ReflectionClass |
||
491 | */ |
||
492 | public $reflClass; |
||
493 | |||
494 | /** |
||
495 | * READ_ONLY: A flag for whether or not this document is read-only. |
||
496 | * |
||
497 | * @var bool |
||
498 | */ |
||
499 | public $isReadOnly; |
||
500 | |||
501 | /** @var InstantiatorInterface */ |
||
502 | private $instantiator; |
||
503 | |||
504 | /** |
||
505 | * Initializes a new ClassMetadata instance that will hold the object-document mapping |
||
506 | * metadata of the class with the given name. |
||
507 | */ |
||
508 | 1610 | public function __construct(string $documentName) |
|
509 | { |
||
510 | 1610 | $this->name = $documentName; |
|
511 | 1610 | $this->rootDocumentName = $documentName; |
|
512 | 1610 | $this->reflClass = new ReflectionClass($documentName); |
|
513 | 1610 | $this->setCollection($this->reflClass->getShortName()); |
|
514 | 1610 | $this->instantiator = new Instantiator(); |
|
|
|||
515 | 1610 | } |
|
516 | |||
517 | /** |
||
518 | * Helper method to get reference id of ref* type references |
||
519 | * |
||
520 | * @internal |
||
521 | * |
||
522 | * @param mixed $reference |
||
523 | * |
||
524 | * @return mixed |
||
525 | */ |
||
526 | 116 | public static function getReferenceId($reference, string $storeAs) |
|
527 | { |
||
528 | 116 | return $storeAs === self::REFERENCE_STORE_AS_ID ? $reference : $reference[self::getReferencePrefix($storeAs) . 'id']; |
|
529 | } |
||
530 | |||
531 | /** |
||
532 | * Returns the reference prefix used for a reference |
||
533 | */ |
||
534 | 185 | private static function getReferencePrefix(string $storeAs) : string |
|
535 | { |
||
536 | 185 | if (! in_array($storeAs, [self::REFERENCE_STORE_AS_REF, self::REFERENCE_STORE_AS_DB_REF, self::REFERENCE_STORE_AS_DB_REF_WITH_DB])) { |
|
537 | throw new LogicException('Can only get a reference prefix for DBRef and reference arrays'); |
||
538 | } |
||
539 | |||
540 | 185 | return $storeAs === self::REFERENCE_STORE_AS_REF ? '' : '$'; |
|
541 | } |
||
542 | |||
543 | /** |
||
544 | * Returns a fully qualified field name for a given reference |
||
545 | * |
||
546 | * @internal |
||
547 | * |
||
548 | * @param string $pathPrefix The field path prefix |
||
549 | */ |
||
550 | 141 | public static function getReferenceFieldName(string $storeAs, string $pathPrefix = '') : string |
|
551 | { |
||
552 | 141 | if ($storeAs === self::REFERENCE_STORE_AS_ID) { |
|
553 | 100 | return $pathPrefix; |
|
554 | } |
||
555 | |||
556 | 126 | return ($pathPrefix ? $pathPrefix . '.' : '') . static::getReferencePrefix($storeAs) . 'id'; |
|
557 | } |
||
558 | |||
559 | /** |
||
560 | * {@inheritDoc} |
||
561 | */ |
||
562 | 1494 | public function getReflectionClass() : ReflectionClass |
|
563 | { |
||
564 | 1494 | return $this->reflClass; |
|
565 | } |
||
566 | |||
567 | /** |
||
568 | * {@inheritDoc} |
||
569 | */ |
||
570 | 323 | public function isIdentifier($fieldName) : bool |
|
571 | { |
||
572 | 323 | return $this->identifier === $fieldName; |
|
573 | } |
||
574 | |||
575 | /** |
||
576 | * INTERNAL: |
||
577 | * Sets the mapped identifier field of this class. |
||
578 | */ |
||
579 | 959 | public function setIdentifier(?string $identifier) : void |
|
580 | { |
||
581 | 959 | $this->identifier = $identifier; |
|
582 | 959 | } |
|
583 | |||
584 | /** |
||
585 | * {@inheritDoc} |
||
586 | * |
||
587 | * Since MongoDB only allows exactly one identifier field |
||
588 | * this will always return an array with only one value |
||
589 | */ |
||
590 | 11 | public function getIdentifier() : array |
|
591 | { |
||
592 | 11 | return [$this->identifier]; |
|
593 | } |
||
594 | |||
595 | /** |
||
596 | * Since MongoDB only allows exactly one identifier field |
||
597 | * this will always return an array with only one value |
||
598 | * |
||
599 | * return (string|null)[] |
||
600 | */ |
||
601 | 99 | public function getIdentifierFieldNames() : array |
|
602 | { |
||
603 | 99 | return [$this->identifier]; |
|
604 | } |
||
605 | |||
606 | /** |
||
607 | * {@inheritDoc} |
||
608 | */ |
||
609 | 941 | public function hasField($fieldName) : bool |
|
610 | { |
||
611 | 941 | return isset($this->fieldMappings[$fieldName]); |
|
612 | } |
||
613 | |||
614 | /** |
||
615 | * Sets the inheritance type used by the class and it's subclasses. |
||
616 | */ |
||
617 | 975 | public function setInheritanceType(int $type) : void |
|
618 | { |
||
619 | 975 | $this->inheritanceType = $type; |
|
620 | 975 | } |
|
621 | |||
622 | /** |
||
623 | * Checks whether a mapped field is inherited from an entity superclass. |
||
624 | */ |
||
625 | 1485 | public function isInheritedField(string $fieldName) : bool |
|
626 | { |
||
627 | 1485 | return isset($this->fieldMappings[$fieldName]['inherited']); |
|
628 | } |
||
629 | |||
630 | /** |
||
631 | * Registers a custom repository class for the document class. |
||
632 | */ |
||
633 | 906 | public function setCustomRepositoryClass(?string $repositoryClassName) : void |
|
634 | { |
||
635 | 906 | if ($this->isEmbeddedDocument || $this->isQueryResultDocument) { |
|
636 | return; |
||
637 | } |
||
638 | |||
639 | 906 | $this->customRepositoryClassName = $repositoryClassName; |
|
640 | 906 | } |
|
641 | |||
642 | /** |
||
643 | * Dispatches the lifecycle event of the given document by invoking all |
||
644 | * registered callbacks. |
||
645 | * |
||
646 | * @throws InvalidArgumentException If document class is not this class or |
||
647 | * a Proxy of this class. |
||
648 | */ |
||
649 | 645 | public function invokeLifecycleCallbacks(string $event, object $document, ?array $arguments = null) : void |
|
650 | { |
||
651 | 645 | if (! $document instanceof $this->name) { |
|
652 | 1 | throw new InvalidArgumentException(sprintf('Expected document class "%s"; found: "%s"', $this->name, get_class($document))); |
|
653 | } |
||
654 | |||
655 | 644 | if (empty($this->lifecycleCallbacks[$event])) { |
|
656 | 629 | return; |
|
657 | } |
||
658 | |||
659 | 189 | foreach ($this->lifecycleCallbacks[$event] as $callback) { |
|
660 | 189 | if ($arguments !== null) { |
|
661 | 188 | $document->$callback(...$arguments); |
|
662 | } else { |
||
663 | 2 | $document->$callback(); |
|
664 | } |
||
665 | } |
||
666 | 189 | } |
|
667 | |||
668 | /** |
||
669 | * Checks whether the class has callbacks registered for a lifecycle event. |
||
670 | */ |
||
671 | public function hasLifecycleCallbacks(string $event) : bool |
||
672 | { |
||
673 | return ! empty($this->lifecycleCallbacks[$event]); |
||
674 | } |
||
675 | |||
676 | /** |
||
677 | * Gets the registered lifecycle callbacks for an event. |
||
678 | */ |
||
679 | public function getLifecycleCallbacks(string $event) : array |
||
680 | { |
||
681 | return $this->lifecycleCallbacks[$event] ?? []; |
||
682 | } |
||
683 | |||
684 | /** |
||
685 | * Adds a lifecycle callback for documents of this class. |
||
686 | * |
||
687 | * If the callback is already registered, this is a NOOP. |
||
688 | */ |
||
689 | 877 | public function addLifecycleCallback(string $callback, string $event) : void |
|
690 | { |
||
691 | 877 | if (isset($this->lifecycleCallbacks[$event]) && in_array($callback, $this->lifecycleCallbacks[$event])) { |
|
692 | 1 | return; |
|
693 | } |
||
694 | |||
695 | 877 | $this->lifecycleCallbacks[$event][] = $callback; |
|
696 | 877 | } |
|
697 | |||
698 | /** |
||
699 | * Sets the lifecycle callbacks for documents of this class. |
||
700 | * |
||
701 | * Any previously registered callbacks are overwritten. |
||
702 | */ |
||
703 | 958 | public function setLifecycleCallbacks(array $callbacks) : void |
|
704 | { |
||
705 | 958 | $this->lifecycleCallbacks = $callbacks; |
|
706 | 958 | } |
|
707 | |||
708 | /** |
||
709 | * Registers a method for loading document data before field hydration. |
||
710 | * |
||
711 | * Note: A method may be registered multiple times for different fields. |
||
712 | * it will be invoked only once for the first field found. |
||
713 | * |
||
714 | * @param array|string $fields Database field name(s) |
||
715 | */ |
||
716 | 14 | public function registerAlsoLoadMethod(string $method, $fields) : void |
|
717 | { |
||
718 | 14 | $this->alsoLoadMethods[$method] = is_array($fields) ? $fields : [$fields]; |
|
719 | 14 | } |
|
720 | |||
721 | /** |
||
722 | * Sets the AlsoLoad methods for documents of this class. |
||
723 | * |
||
724 | * Any previously registered methods are overwritten. |
||
725 | */ |
||
726 | 958 | public function setAlsoLoadMethods(array $methods) : void |
|
727 | { |
||
728 | 958 | $this->alsoLoadMethods = $methods; |
|
729 | 958 | } |
|
730 | |||
731 | /** |
||
732 | * Sets the discriminator field. |
||
733 | * |
||
734 | * The field name is the the unmapped database field. Discriminator values |
||
735 | * are only used to discern the hydration class and are not mapped to class |
||
736 | * properties. |
||
737 | * |
||
738 | * @param array|string|null $discriminatorField |
||
739 | * |
||
740 | * @throws MappingException If the discriminator field conflicts with the |
||
741 | * "name" attribute of a mapped field. |
||
742 | */ |
||
743 | 984 | public function setDiscriminatorField($discriminatorField) : void |
|
744 | { |
||
745 | 984 | if ($this->isFile) { |
|
746 | throw MappingException::discriminatorNotAllowedForGridFS($this->name); |
||
747 | } |
||
748 | |||
749 | 984 | if ($discriminatorField === null) { |
|
750 | 915 | $this->discriminatorField = null; |
|
751 | |||
752 | 915 | return; |
|
753 | } |
||
754 | |||
755 | // @todo: deprecate, document and remove this: |
||
756 | // Handle array argument with name/fieldName keys for BC |
||
757 | 181 | if (is_array($discriminatorField)) { |
|
758 | if (isset($discriminatorField['name'])) { |
||
759 | $discriminatorField = $discriminatorField['name']; |
||
760 | } elseif (isset($discriminatorField['fieldName'])) { |
||
761 | $discriminatorField = $discriminatorField['fieldName']; |
||
762 | } |
||
763 | } |
||
764 | |||
765 | 181 | foreach ($this->fieldMappings as $fieldMapping) { |
|
766 | 4 | if ($discriminatorField === $fieldMapping['name']) { |
|
767 | 1 | throw MappingException::discriminatorFieldConflict($this->name, $discriminatorField); |
|
768 | } |
||
769 | } |
||
770 | |||
771 | 180 | $this->discriminatorField = $discriminatorField; |
|
772 | 180 | } |
|
773 | |||
774 | /** |
||
775 | * Sets the discriminator values used by this class. |
||
776 | * Used for JOINED and SINGLE_TABLE inheritance mapping strategies. |
||
777 | * |
||
778 | * @throws MappingException |
||
779 | */ |
||
780 | 977 | public function setDiscriminatorMap(array $map) : void |
|
781 | { |
||
782 | 977 | if ($this->isFile) { |
|
783 | throw MappingException::discriminatorNotAllowedForGridFS($this->name); |
||
784 | } |
||
785 | |||
786 | 977 | foreach ($map as $value => $className) { |
|
787 | 175 | $this->discriminatorMap[$value] = $className; |
|
788 | 175 | if ($this->name === $className) { |
|
789 | 167 | $this->discriminatorValue = $value; |
|
790 | } else { |
||
791 | 174 | if (! class_exists($className)) { |
|
792 | throw MappingException::invalidClassInDiscriminatorMap($className, $this->name); |
||
793 | } |
||
794 | 174 | if (is_subclass_of($className, $this->name)) { |
|
795 | 160 | $this->subClasses[] = $className; |
|
796 | } |
||
797 | } |
||
798 | } |
||
799 | 977 | } |
|
800 | |||
801 | /** |
||
802 | * Sets the default discriminator value to be used for this class |
||
803 | * Used for SINGLE_TABLE inheritance mapping strategies if the document has no discriminator value |
||
804 | * |
||
805 | * @throws MappingException |
||
806 | */ |
||
807 | 961 | public function setDefaultDiscriminatorValue(?string $defaultDiscriminatorValue) : void |
|
808 | { |
||
809 | 961 | if ($this->isFile) { |
|
810 | throw MappingException::discriminatorNotAllowedForGridFS($this->name); |
||
811 | } |
||
812 | |||
813 | 961 | if ($defaultDiscriminatorValue === null) { |
|
814 | 958 | $this->defaultDiscriminatorValue = null; |
|
815 | |||
816 | 958 | return; |
|
817 | } |
||
818 | |||
819 | 111 | if (! array_key_exists($defaultDiscriminatorValue, $this->discriminatorMap)) { |
|
820 | throw MappingException::invalidDiscriminatorValue($defaultDiscriminatorValue, $this->name); |
||
821 | } |
||
822 | |||
823 | 111 | $this->defaultDiscriminatorValue = $defaultDiscriminatorValue; |
|
824 | 111 | } |
|
825 | |||
826 | /** |
||
827 | * Sets the discriminator value for this class. |
||
828 | * Used for JOINED/SINGLE_TABLE inheritance and multiple document types in a single |
||
829 | * collection. |
||
830 | * |
||
831 | * @throws MappingException |
||
832 | */ |
||
833 | 3 | public function setDiscriminatorValue(string $value) : void |
|
834 | { |
||
835 | 3 | if ($this->isFile) { |
|
836 | throw MappingException::discriminatorNotAllowedForGridFS($this->name); |
||
837 | } |
||
838 | |||
839 | 3 | $this->discriminatorMap[$value] = $this->name; |
|
840 | 3 | $this->discriminatorValue = $value; |
|
841 | 3 | } |
|
842 | |||
843 | /** |
||
844 | * Add a index for this Document. |
||
845 | */ |
||
846 | 260 | public function addIndex(array $keys, array $options = []) : void |
|
847 | { |
||
848 | 260 | $this->indexes[] = [ |
|
849 | 'keys' => array_map(static function ($value) { |
||
850 | 260 | if ($value === 1 || $value === -1) { |
|
851 | 108 | return $value; |
|
852 | } |
||
853 | 260 | if (is_string($value)) { |
|
854 | 260 | $lower = strtolower($value); |
|
855 | 260 | if ($lower === 'asc') { |
|
856 | 253 | return 1; |
|
857 | } |
||
858 | |||
859 | 115 | if ($lower === 'desc') { |
|
860 | return -1; |
||
861 | } |
||
862 | } |
||
863 | 115 | return $value; |
|
864 | 260 | }, $keys), |
|
865 | 260 | 'options' => $options, |
|
866 | ]; |
||
867 | 260 | } |
|
868 | |||
869 | /** |
||
870 | * Returns the array of indexes for this Document. |
||
871 | */ |
||
872 | 44 | public function getIndexes() : array |
|
873 | { |
||
874 | 44 | return $this->indexes; |
|
875 | } |
||
876 | |||
877 | /** |
||
878 | * Checks whether this document has indexes or not. |
||
879 | */ |
||
880 | public function hasIndexes() : bool |
||
881 | { |
||
882 | return $this->indexes ? true : false; |
||
883 | } |
||
884 | |||
885 | /** |
||
886 | * Set shard key for this Document. |
||
887 | * |
||
888 | * @throws MappingException |
||
889 | */ |
||
890 | 144 | public function setShardKey(array $keys, array $options = []) : void |
|
891 | { |
||
892 | 144 | if ($this->inheritanceType === self::INHERITANCE_TYPE_SINGLE_COLLECTION && $this->shardKey !== []) { |
|
893 | 2 | throw MappingException::shardKeyInSingleCollInheritanceSubclass($this->getName()); |
|
894 | } |
||
895 | |||
896 | 144 | if ($this->isEmbeddedDocument) { |
|
897 | 2 | throw MappingException::embeddedDocumentCantHaveShardKey($this->getName()); |
|
898 | } |
||
899 | |||
900 | 142 | foreach (array_keys($keys) as $field) { |
|
901 | 142 | if (! isset($this->fieldMappings[$field])) { |
|
902 | 135 | continue; |
|
903 | } |
||
904 | |||
905 | 114 | if (in_array($this->fieldMappings[$field]['type'], ['many', 'collection'])) { |
|
906 | 3 | throw MappingException::noMultiKeyShardKeys($this->getName(), $field); |
|
907 | } |
||
908 | |||
909 | 111 | if ($this->fieldMappings[$field]['strategy'] !== static::STORAGE_STRATEGY_SET) { |
|
910 | 1 | throw MappingException::onlySetStrategyAllowedInShardKey($this->getName(), $field); |
|
911 | } |
||
912 | } |
||
913 | |||
914 | 138 | $this->shardKey = [ |
|
915 | 'keys' => array_map(static function ($value) { |
||
916 | 138 | if ($value === 1 || $value === -1) { |
|
917 | 5 | return $value; |
|
918 | } |
||
919 | 138 | if (is_string($value)) { |
|
920 | 138 | $lower = strtolower($value); |
|
921 | 138 | if ($lower === 'asc') { |
|
922 | 136 | return 1; |
|
923 | } |
||
924 | |||
925 | 110 | if ($lower === 'desc') { |
|
926 | return -1; |
||
927 | } |
||
928 | } |
||
929 | 110 | return $value; |
|
930 | 138 | }, $keys), |
|
931 | 138 | 'options' => $options, |
|
932 | ]; |
||
933 | 138 | } |
|
934 | |||
935 | 27 | public function getShardKey() : array |
|
936 | { |
||
937 | 27 | return $this->shardKey; |
|
938 | } |
||
939 | |||
940 | /** |
||
941 | * Checks whether this document has shard key or not. |
||
942 | */ |
||
943 | 1205 | public function isSharded() : bool |
|
944 | { |
||
945 | 1205 | return $this->shardKey ? true : false; |
|
946 | } |
||
947 | |||
948 | /** |
||
949 | * Sets the read preference used by this class. |
||
950 | */ |
||
951 | 958 | public function setReadPreference(?string $readPreference, array $tags) : void |
|
956 | |||
957 | /** |
||
958 | * Sets the write concern used by this class. |
||
959 | * |
||
960 | * @param string|int|null $writeConcern |
||
961 | */ |
||
962 | 968 | public function setWriteConcern($writeConcern) : void |
|
966 | |||
967 | /** |
||
968 | * @return int|string|null |
||
969 | */ |
||
970 | 11 | public function getWriteConcern() |
|
974 | |||
975 | /** |
||
976 | * Whether there is a write concern configured for this class. |
||
977 | */ |
||
978 | 592 | public function hasWriteConcern() : bool |
|
979 | { |
||
980 | 592 | return $this->writeConcern !== null; |
|
981 | } |
||
982 | |||
983 | /** |
||
984 | * Sets the change tracking policy used by this class. |
||
985 | */ |
||
986 | 960 | public function setChangeTrackingPolicy(int $policy) : void |
|
987 | { |
||
988 | 960 | $this->changeTrackingPolicy = $policy; |
|
989 | 960 | } |
|
990 | |||
991 | /** |
||
992 | * Whether the change tracking policy of this class is "deferred explicit". |
||
993 | */ |
||
994 | 68 | public function isChangeTrackingDeferredExplicit() : bool |
|
995 | { |
||
996 | 68 | return $this->changeTrackingPolicy === self::CHANGETRACKING_DEFERRED_EXPLICIT; |
|
997 | } |
||
998 | |||
999 | /** |
||
1000 | * Whether the change tracking policy of this class is "deferred implicit". |
||
1001 | */ |
||
1002 | 615 | public function isChangeTrackingDeferredImplicit() : bool |
|
1003 | { |
||
1004 | 615 | return $this->changeTrackingPolicy === self::CHANGETRACKING_DEFERRED_IMPLICIT; |
|
1005 | } |
||
1006 | |||
1007 | /** |
||
1008 | * Whether the change tracking policy of this class is "notify". |
||
1009 | */ |
||
1010 | 342 | public function isChangeTrackingNotify() : bool |
|
1014 | |||
1015 | /** |
||
1016 | * Gets the ReflectionProperties of the mapped class. |
||
1017 | */ |
||
1018 | 1 | public function getReflectionProperties() : array |
|
1022 | |||
1023 | /** |
||
1024 | * Gets a ReflectionProperty for a specific field of the mapped class. |
||
1025 | */ |
||
1026 | 98 | public function getReflectionProperty(string $name) : ReflectionProperty |
|
1030 | |||
1031 | /** |
||
1032 | * {@inheritDoc} |
||
1033 | */ |
||
1034 | 1493 | public function getName() : string |
|
1038 | |||
1039 | /** |
||
1040 | * Returns the database this Document is mapped to. |
||
1041 | */ |
||
1042 | 1410 | public function getDatabase() : ?string |
|
1046 | |||
1047 | /** |
||
1048 | * Set the database this Document is mapped to. |
||
1049 | */ |
||
1050 | 154 | public function setDatabase(?string $db) : void |
|
1054 | |||
1055 | /** |
||
1056 | * Get the collection this Document is mapped to. |
||
1057 | */ |
||
1058 | 1402 | public function getCollection() : string |
|
1062 | |||
1063 | /** |
||
1064 | * Sets the collection this Document is mapped to. |
||
1065 | * |
||
1066 | * @param array|string $name |
||
1067 | * |
||
1068 | * @throws InvalidArgumentException |
||
1069 | */ |
||
1070 | 1610 | public function setCollection($name) : void |
|
1084 | |||
1085 | 40 | public function getBucketName() : ?string |
|
1089 | |||
1090 | 1 | public function setBucketName(string $bucketName) : void |
|
1095 | |||
1096 | 10 | public function getChunkSizeBytes() : ?int |
|
1100 | |||
1101 | 122 | public function setChunkSizeBytes(int $chunkSizeBytes) : void |
|
1105 | |||
1106 | /** |
||
1107 | * Get whether or not the documents collection is capped. |
||
1108 | */ |
||
1109 | 11 | public function getCollectionCapped() : bool |
|
1113 | |||
1114 | /** |
||
1115 | * Set whether or not the documents collection is capped. |
||
1116 | */ |
||
1117 | 1 | public function setCollectionCapped(bool $bool) : void |
|
1121 | |||
1122 | /** |
||
1123 | * Get the collection size |
||
1124 | */ |
||
1125 | 11 | public function getCollectionSize() : ?int |
|
1129 | |||
1130 | /** |
||
1131 | * Set the collection size. |
||
1132 | */ |
||
1133 | 1 | public function setCollectionSize(int $size) : void |
|
1137 | |||
1138 | /** |
||
1139 | * Get the collection max. |
||
1140 | */ |
||
1141 | 11 | public function getCollectionMax() : ?int |
|
1145 | |||
1146 | /** |
||
1147 | * Set the collection max. |
||
1148 | */ |
||
1149 | 1 | public function setCollectionMax(int $max) : void |
|
1153 | |||
1154 | /** |
||
1155 | * Returns TRUE if this Document is mapped to a collection FALSE otherwise. |
||
1156 | */ |
||
1157 | public function isMappedToCollection() : bool |
||
1161 | |||
1162 | /** |
||
1163 | * Validates the storage strategy of a mapping for consistency |
||
1164 | * |
||
1165 | * @throws MappingException |
||
1166 | */ |
||
1167 | 1512 | private function applyStorageStrategy(array &$mapping) : void |
|
1210 | |||
1211 | /** |
||
1212 | * Map a single embedded document. |
||
1213 | */ |
||
1214 | 6 | public function mapOneEmbedded(array $mapping) : void |
|
1220 | |||
1221 | /** |
||
1222 | * Map a collection of embedded documents. |
||
1223 | */ |
||
1224 | 5 | public function mapManyEmbedded(array $mapping) : void |
|
1230 | |||
1231 | /** |
||
1232 | * Map a single document reference. |
||
1233 | */ |
||
1234 | 2 | public function mapOneReference(array $mapping) : void |
|
1240 | |||
1241 | /** |
||
1242 | * Map a collection of document references. |
||
1243 | */ |
||
1244 | 1 | public function mapManyReference(array $mapping) : void |
|
1250 | |||
1251 | /** |
||
1252 | * INTERNAL: |
||
1253 | * Adds a field mapping without completing/validating it. |
||
1254 | * This is mainly used to add inherited field mappings to derived classes. |
||
1255 | */ |
||
1256 | 182 | public function addInheritedFieldMapping(array $fieldMapping) : void |
|
1266 | |||
1267 | /** |
||
1268 | * INTERNAL: |
||
1269 | * Adds an association mapping without completing/validating it. |
||
1270 | * This is mainly used to add inherited association mappings to derived classes. |
||
1271 | * |
||
1272 | * @throws MappingException |
||
1273 | */ |
||
1274 | 133 | public function addInheritedAssociationMapping(array $mapping) : void |
|
1278 | |||
1279 | /** |
||
1280 | * Checks whether the class has a mapped association with the given field name. |
||
1281 | */ |
||
1282 | 31 | public function hasReference(string $fieldName) : bool |
|
1286 | |||
1287 | /** |
||
1288 | * Checks whether the class has a mapped embed with the given field name. |
||
1289 | */ |
||
1290 | 4 | public function hasEmbed(string $fieldName) : bool |
|
1294 | |||
1295 | /** |
||
1296 | * {@inheritDoc} |
||
1297 | * |
||
1298 | * Checks whether the class has a mapped association (embed or reference) with the given field name. |
||
1299 | */ |
||
1300 | 6 | public function hasAssociation($fieldName) : bool |
|
1304 | |||
1305 | /** |
||
1306 | * {@inheritDoc} |
||
1307 | * |
||
1308 | * Checks whether the class has a mapped reference or embed for the specified field and |
||
1309 | * is a single valued association. |
||
1310 | */ |
||
1311 | public function isSingleValuedAssociation($fieldName) : bool |
||
1315 | |||
1316 | /** |
||
1317 | * {@inheritDoc} |
||
1318 | * |
||
1319 | * Checks whether the class has a mapped reference or embed for the specified field and |
||
1320 | * is a collection valued association. |
||
1321 | */ |
||
1322 | public function isCollectionValuedAssociation($fieldName) : bool |
||
1326 | |||
1327 | /** |
||
1328 | * Checks whether the class has a mapped association for the specified field |
||
1329 | * and if yes, checks whether it is a single-valued association (to-one). |
||
1330 | */ |
||
1331 | 1 | public function isSingleValuedReference(string $fieldName) : bool |
|
1332 | { |
||
1333 | 1 | return isset($this->fieldMappings[$fieldName]['association']) && |
|
1334 | 1 | $this->fieldMappings[$fieldName]['association'] === self::REFERENCE_ONE; |
|
1335 | } |
||
1336 | |||
1337 | /** |
||
1338 | * Checks whether the class has a mapped association for the specified field |
||
1339 | * and if yes, checks whether it is a collection-valued association (to-many). |
||
1340 | */ |
||
1341 | public function isCollectionValuedReference(string $fieldName) : bool |
||
1346 | |||
1347 | /** |
||
1348 | * Checks whether the class has a mapped embedded document for the specified field |
||
1349 | * and if yes, checks whether it is a single-valued association (to-one). |
||
1350 | */ |
||
1351 | public function isSingleValuedEmbed(string $fieldName) : bool |
||
1356 | |||
1357 | /** |
||
1358 | * Checks whether the class has a mapped embedded document for the specified field |
||
1359 | * and if yes, checks whether it is a collection-valued association (to-many). |
||
1360 | */ |
||
1361 | public function isCollectionValuedEmbed(string $fieldName) : bool |
||
1366 | |||
1367 | /** |
||
1368 | * Sets the ID generator used to generate IDs for instances of this class. |
||
1369 | */ |
||
1370 | 1427 | public function setIdGenerator(AbstractIdGenerator $generator) : void |
|
1374 | |||
1375 | /** |
||
1376 | * Casts the identifier to its portable PHP type. |
||
1377 | * |
||
1378 | * @param mixed $id |
||
1379 | * |
||
1380 | * @return mixed $id |
||
1381 | */ |
||
1382 | 644 | public function getPHPIdentifierValue($id) |
|
1387 | |||
1388 | /** |
||
1389 | * Casts the identifier to its database type. |
||
1390 | * |
||
1391 | * @param mixed $id |
||
1392 | * |
||
1393 | * @return mixed $id |
||
1394 | */ |
||
1395 | 708 | public function getDatabaseIdentifierValue($id) |
|
1400 | |||
1401 | /** |
||
1402 | * Sets the document identifier of a document. |
||
1403 | * |
||
1404 | * The value will be converted to a PHP type before being set. |
||
1405 | * |
||
1406 | * @param mixed $id |
||
1407 | */ |
||
1408 | 573 | public function setIdentifierValue(object $document, $id) : void |
|
1413 | |||
1414 | /** |
||
1415 | * Gets the document identifier as a PHP type. |
||
1416 | * |
||
1417 | * @return mixed $id |
||
1418 | */ |
||
1419 | 651 | public function getIdentifierValue(object $document) |
|
1423 | |||
1424 | /** |
||
1425 | * {@inheritDoc} |
||
1426 | * |
||
1427 | * Since MongoDB only allows exactly one identifier field this is a proxy |
||
1428 | * to {@see getIdentifierValue()} and returns an array with the identifier |
||
1429 | * field as a key. |
||
1430 | */ |
||
1431 | public function getIdentifierValues($object) : array |
||
1435 | |||
1436 | /** |
||
1437 | * Get the document identifier object as a database type. |
||
1438 | * |
||
1439 | * @return mixed $id |
||
1440 | */ |
||
1441 | 30 | public function getIdentifierObject(object $document) |
|
1445 | |||
1446 | /** |
||
1447 | * Sets the specified field to the specified value on the given document. |
||
1448 | * |
||
1449 | * @param mixed $value |
||
1450 | */ |
||
1451 | 8 | public function setFieldValue(object $document, string $field, $value) : void |
|
1461 | |||
1462 | /** |
||
1463 | * Gets the specified field's value off the given document. |
||
1464 | * |
||
1465 | * @return mixed |
||
1466 | */ |
||
1467 | 32 | public function getFieldValue(object $document, string $field) |
|
1475 | |||
1476 | /** |
||
1477 | * Gets the mapping of a field. |
||
1478 | * |
||
1479 | * @throws MappingException If the $fieldName is not found in the fieldMappings array. |
||
1480 | */ |
||
1481 | 191 | public function getFieldMapping(string $fieldName) : array |
|
1488 | |||
1489 | /** |
||
1490 | * Gets mappings of fields holding embedded document(s). |
||
1491 | */ |
||
1492 | 593 | public function getEmbeddedFieldsMappings() : array |
|
1501 | |||
1502 | /** |
||
1503 | * Gets the field mapping by its DB name. |
||
1504 | * E.g. it returns identifier's mapping when called with _id. |
||
1505 | * |
||
1506 | * @throws MappingException |
||
1507 | */ |
||
1508 | 14 | public function getFieldMappingByDbFieldName(string $dbFieldName) : array |
|
1518 | |||
1519 | /** |
||
1520 | * Check if the field is not null. |
||
1521 | */ |
||
1522 | 1 | public function isNullable(string $fieldName) : bool |
|
1527 | |||
1528 | /** |
||
1529 | * Checks whether the document has a discriminator field and value configured. |
||
1530 | */ |
||
1531 | 519 | public function hasDiscriminator() : bool |
|
1535 | |||
1536 | /** |
||
1537 | * Sets the type of Id generator to use for the mapped class. |
||
1538 | */ |
||
1539 | 958 | public function setIdGeneratorType(int $generatorType) : void |
|
1543 | |||
1544 | /** |
||
1545 | * Sets the Id generator options. |
||
1546 | */ |
||
1547 | public function setIdGeneratorOptions(array $generatorOptions) : void |
||
1551 | |||
1552 | 612 | public function isInheritanceTypeNone() : bool |
|
1556 | |||
1557 | /** |
||
1558 | * Checks whether the mapped class uses the SINGLE_COLLECTION inheritance mapping strategy. |
||
1559 | */ |
||
1560 | 957 | public function isInheritanceTypeSingleCollection() : bool |
|
1564 | |||
1565 | /** |
||
1566 | * Checks whether the mapped class uses the COLLECTION_PER_CLASS inheritance mapping strategy. |
||
1567 | */ |
||
1568 | public function isInheritanceTypeCollectionPerClass() : bool |
||
1572 | |||
1573 | /** |
||
1574 | * Sets the mapped subclasses of this class. |
||
1575 | * |
||
1576 | * @param string[] $subclasses The names of all mapped subclasses. |
||
1577 | */ |
||
1578 | 2 | public function setSubclasses(array $subclasses) : void |
|
1584 | |||
1585 | /** |
||
1586 | * Sets the parent class names. |
||
1587 | * Assumes that the class names in the passed array are in the order: |
||
1588 | * directParent -> directParentParent -> directParentParentParent ... -> root. |
||
1589 | * |
||
1590 | * @param string[] $classNames |
||
1591 | */ |
||
1592 | 1482 | public function setParentClasses(array $classNames) : void |
|
1602 | |||
1603 | /** |
||
1604 | * Checks whether the class will generate a new \MongoDB\BSON\ObjectId instance for us. |
||
1605 | */ |
||
1606 | public function isIdGeneratorAuto() : bool |
||
1610 | |||
1611 | /** |
||
1612 | * Checks whether the class will use a collection to generate incremented identifiers. |
||
1613 | */ |
||
1614 | public function isIdGeneratorIncrement() : bool |
||
1618 | |||
1619 | /** |
||
1620 | * Checks whether the class will generate a uuid id. |
||
1621 | */ |
||
1622 | public function isIdGeneratorUuid() : bool |
||
1626 | |||
1627 | /** |
||
1628 | * Checks whether the class uses no id generator. |
||
1629 | */ |
||
1630 | public function isIdGeneratorNone() : bool |
||
1634 | |||
1635 | /** |
||
1636 | * Sets the version field mapping used for versioning. Sets the default |
||
1637 | * value to use depending on the column type. |
||
1638 | * |
||
1639 | * @throws LockException |
||
1640 | */ |
||
1641 | 151 | public function setVersionMapping(array &$mapping) : void |
|
1650 | |||
1651 | /** |
||
1652 | * Sets whether this class is to be versioned for optimistic locking. |
||
1653 | */ |
||
1654 | 958 | public function setVersioned(bool $bool) : void |
|
1658 | |||
1659 | /** |
||
1660 | * Sets the name of the field that is to be used for versioning if this class is |
||
1661 | * versioned for optimistic locking. |
||
1662 | */ |
||
1663 | 958 | public function setVersionField(?string $versionField) : void |
|
1667 | |||
1668 | /** |
||
1669 | * Sets the version field mapping used for versioning. Sets the default |
||
1670 | * value to use depending on the column type. |
||
1671 | * |
||
1672 | * @throws LockException |
||
1673 | */ |
||
1674 | 22 | public function setLockMapping(array &$mapping) : void |
|
1683 | |||
1684 | /** |
||
1685 | * Sets whether this class is to allow pessimistic locking. |
||
1686 | */ |
||
1687 | public function setLockable(bool $bool) : void |
||
1691 | |||
1692 | /** |
||
1693 | * Sets the name of the field that is to be used for storing whether a document |
||
1694 | * is currently locked or not. |
||
1695 | */ |
||
1696 | public function setLockField(string $lockField) : void |
||
1700 | |||
1701 | /** |
||
1702 | * Marks this class as read only, no change tracking is applied to it. |
||
1703 | */ |
||
1704 | 5 | public function markReadOnly() : void |
|
1708 | |||
1709 | /** |
||
1710 | * {@inheritDoc} |
||
1711 | */ |
||
1712 | public function getFieldNames() : array |
||
1716 | |||
1717 | /** |
||
1718 | * {@inheritDoc} |
||
1719 | */ |
||
1720 | public function getAssociationNames() : array |
||
1724 | |||
1725 | /** |
||
1726 | * {@inheritDoc} |
||
1727 | */ |
||
1728 | public function getTypeOfField($fieldName) : ?string |
||
1733 | |||
1734 | /** |
||
1735 | * {@inheritDoc} |
||
1736 | */ |
||
1737 | 4 | public function getAssociationTargetClass($assocName) : string |
|
1745 | |||
1746 | /** |
||
1747 | * Retrieve the collectionClass associated with an association |
||
1748 | */ |
||
1749 | public function getAssociationCollectionClass(string $assocName) : string |
||
1761 | |||
1762 | /** |
||
1763 | * {@inheritDoc} |
||
1764 | */ |
||
1765 | public function isAssociationInverseSide($fieldName) : bool |
||
1769 | |||
1770 | /** |
||
1771 | * {@inheritDoc} |
||
1772 | */ |
||
1773 | public function getAssociationMappedByTargetField($fieldName) |
||
1777 | |||
1778 | /** |
||
1779 | * Map a field. |
||
1780 | * |
||
1781 | * @throws MappingException |
||
1782 | */ |
||
1783 | 1528 | public function mapField(array $mapping) : array |
|
1946 | |||
1947 | /** |
||
1948 | * Determines which fields get serialized. |
||
1949 | * |
||
1950 | * It is only serialized what is necessary for best unserialization performance. |
||
1951 | * That means any metadata properties that are not set or empty or simply have |
||
1952 | * their default value are NOT serialized. |
||
1953 | * |
||
1954 | * Parts that are also NOT serialized because they can not be properly unserialized: |
||
1955 | * - reflClass (ReflectionClass) |
||
1956 | * - reflFields (ReflectionProperty array) |
||
1957 | * |
||
1958 | * @return array The names of all the fields that should be serialized. |
||
1959 | */ |
||
1960 | 6 | public function __sleep() |
|
2039 | |||
2040 | /** |
||
2041 | * Restores some state that can not be serialized/unserialized. |
||
2042 | */ |
||
2043 | 6 | public function __wakeup() |
|
2059 | |||
2060 | /** |
||
2061 | * Creates a new instance of the mapped class, without invoking the constructor. |
||
2062 | */ |
||
2063 | 367 | public function newInstance() : object |
|
2067 | |||
2068 | 124 | private function isAllowedGridFSField(string $name) : bool |
|
2072 | |||
2073 | 1511 | private function checkDuplicateMapping(array $mapping) : void |
|
2098 | } |
||
2099 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..