Passed
Pull Request — master (#41)
by Thomas
03:05
created

Entity::prePersist()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 3
ccs 2
cts 2
cp 1
rs 10
cc 1
eloc 1
nc 1
nop 0
crap 1
1
<?php
2
3
namespace ORM;
4
5
use ORM\Dbal\Column;
6
use ORM\Exception\IncompletePrimaryKey;
7
use ORM\Exception\InvalidConfiguration;
8
use ORM\Exception\InvalidRelation;
9
use ORM\Exception\InvalidName;
10
use ORM\Exception\NoEntityManager;
11
use ORM\Exception\UndefinedRelation;
12
use ORM\Dbal\Error;
13
use ORM\Dbal\Table;
14
use ORM\EntityManager as EM;
15
use ORM\Exception\UnknownColumn;
16
17
/**
18
 * Definition of an entity
19
 *
20
 * The instance of an entity represents a row of the table and the statics variables and methods describe the database
21
 * table.
22
 *
23
 * This is the main part where your configuration efforts go. The following properties and methods are well documented
24
 * in the manual under [https://tflori.github.io/orm/entityDefinition.html](Entity Definition).
25
 *
26
 * @package ORM
27
 * @link https://tflori.github.io/orm/entityDefinition.html Entity Definition
28
 * @author Thomas Flori <[email protected]>
29
 */
30
abstract class Entity implements \Serializable
31
{
32
    /** @deprecated Use Relation::OPT_CLASS instead */
33
    const OPT_RELATION_CLASS       = 'class';
34
    /** @deprecated Use Relation::OPT_CARDINALITY instead */
35
    const OPT_RELATION_CARDINALITY = 'cardinality';
36
    /** @deprecated Use Relation::OPT_REFERENCE instead */
37
    const OPT_RELATION_REFERENCE   = 'reference';
38
    /** @deprecated Use Relation::OPT_OPPONENT instead */
39
    const OPT_RELATION_OPPONENT    = 'opponent';
40
    /** @deprecated Use Relation::OPT_TABLE instead */
41
    const OPT_RELATION_TABLE       = 'table';
42
43
    /** The template to use to calculate the table name.
44
     * @var string */
45
    protected static $tableNameTemplate;
46
47
    /** The naming scheme to use for table names.
48
     * @var string */
49
    protected static $namingSchemeTable;
50
51
    /** The naming scheme to use for column names.
52
     * @var string */
53
    protected static $namingSchemeColumn;
54
55
    /** The naming scheme to use for method names.
56
     * @var string */
57
    protected static $namingSchemeMethods;
58
59
    /** Fixed table name (ignore other settings)
60
     * @var string */
61
    protected static $tableName;
62
63
    /** The variable(s) used for primary key.
64
     * @var string[]|string */
65
    protected static $primaryKey = ['id'];
66
67
    /** Fixed column names (ignore other settings)
68
     * @var string[] */
69
    protected static $columnAliases = [];
70
71
    /** A prefix for column names.
72
     * @var string */
73
    protected static $columnPrefix;
74
75
    /** Whether or not the primary key is auto incremented.
76
     * @var bool */
77
    protected static $autoIncrement = true;
78
79
    /** Whether or not the validator for this class is enabled.
80
     * @var bool */
81
    protected static $enableValidator = false;
82
83
    /** Whether or not the validator for a class got enabled during runtime.
84
     * @var bool[] */
85
    protected static $enabledValidators = [];
86
87
    /** Relation definitions
88
     * @var array */
89
    protected static $relations = [];
90
91
    /** The reflections of the classes.
92
     * @internal
93
     * @var \ReflectionClass[] */
94
    protected static $reflections = [];
95
96
    /** The current data of a row.
97
     * @var mixed[] */
98
    protected $data = [];
99
100
    /** The original data of the row.
101
     * @var mixed[] */
102
    protected $originalData = [];
103
104
    /** The entity manager from which this entity got created
105
     * @var EM */
106
    protected $entityManager;
107
108
    /** Related objects for getRelated
109
     * @var array */
110
    protected $relatedObjects = [];
111
112
    /**
113
     * Constructor
114
     *
115
     * It calls ::onInit() after initializing $data and $originalData.
116
     *
117
     * @param mixed[] $data The current data
118
     * @param EM $entityManager The EntityManager that created this entity
119
     * @param bool $fromDatabase Whether or not the data comes from database
120
     */
121 114
    final public function __construct(array $data = [], EM $entityManager = null, $fromDatabase = false)
122
    {
123 114
        if ($fromDatabase) {
124 14
            $this->originalData = $data;
125
        }
126 114
        $this->data = array_merge($this->data, $data);
127 114
        $this->entityManager = $entityManager ?: EM::getInstance(static::class);
128 114
        $this->onInit(!$fromDatabase);
129 114
    }
130
131
    /**
132
     * Get a description for this table.
133
     *
134
     * @return Table|Column[]
135
     * @codeCoverageIgnore This is just a proxy
136
     */
137
    public static function describe()
138
    {
139
        return EM::getInstance(static::class)->describe(static::getTableName());
140
    }
141
142
    /**
143
     * Get the column name of $attribute
144
     *
145
     * The column names can not be specified by template. Instead they are constructed by $columnPrefix and enforced
146
     * to $namingSchemeColumn.
147
     *
148
     * **ATTENTION**: If your overwrite this method remember that getColumnName(getColumnName($name)) have to be exactly
149
     * the same as getColumnName($name).
150
     *
151
     * @param string $attribute
152
     * @return string
153
     * @throws InvalidConfiguration
154
     */
155 146
    public static function getColumnName($attribute)
156
    {
157 146
        if (isset(static::$columnAliases[$attribute])) {
158 6
            return static::$columnAliases[$attribute];
159
        }
160
161 144
        return EM::getInstance(static::class)->getNamer()
162 144
            ->getColumnName(static::class, $attribute, static::$columnPrefix, static::$namingSchemeColumn);
163
    }
164
165
    /**
166
     * Get the primary key vars
167
     *
168
     * The primary key can consist of multiple columns. You should configure the vars that are translated to these
169
     * columns.
170
     *
171
     * @return array
172
     */
173 56
    public static function getPrimaryKeyVars()
174
    {
175 56
        return !is_array(static::$primaryKey) ? [static::$primaryKey] : static::$primaryKey;
176
    }
177
178
    /**
179
     * Get the definition for $relation
180
     *
181
     * It normalize the short definition form and create a Relation object from it.
182
     *
183
     * @param string $relation
184
     * @return Relation
185
     * @throws InvalidConfiguration
186
     * @throws UndefinedRelation
187
     */
188 85
    public static function getRelation($relation)
189
    {
190 85
        if (!isset(static::$relations[$relation])) {
191 3
            throw new UndefinedRelation('Relation ' . $relation . ' is not defined');
192
        }
193
194 84
        $relDef = &static::$relations[$relation];
195
196 84
        if (!$relDef instanceof Relation) {
197 15
            $relDef = Relation::createRelation($relation, $relDef);
198
        }
199
200 83
        return $relDef;
201
    }
202
203
    /**
204
     * Get the table name
205
     *
206
     * The table name is constructed by $tableNameTemplate and $namingSchemeTable. It can be overwritten by
207
     * $tableName.
208
     *
209
     * @return string
210
     * @throws InvalidName|InvalidConfiguration
211
     */
212 147
    public static function getTableName()
213
    {
214 147
        if (static::$tableName) {
215 11
            return static::$tableName;
216
        }
217
218 136
        return EM::getInstance(static::class)->getNamer()
219 136
            ->getTableName(static::class, static::$tableNameTemplate, static::$namingSchemeTable);
220
    }
221
222
    /**
223
     * Check if the table has a auto increment column
224
     *
225
     * @return bool
226
     */
227 14
    public static function isAutoIncremented()
228
    {
229 14
        return count(static::getPrimaryKeyVars()) > 1 ? false : static::$autoIncrement;
230
    }
231
232
    /**
233
     * Check if the validator is enabled
234
     *
235
     * @return bool
236
     */
237 27
    public static function isValidatorEnabled()
238
    {
239 27
        return isset(self::$enabledValidators[static::class]) ?
240 27
            self::$enabledValidators[static::class] : static::$enableValidator;
241
    }
242
243
    /**
244
     * Enable validator
245
     *
246
     * @param bool $enable
247
     */
248 8
    public static function enableValidator($enable = true)
249
    {
250 8
        self::$enabledValidators[static::class] = $enable;
251 8
    }
252
253
    /**
254
     * Disable validator
255
     *
256
     * @param bool $disable
257
     */
258 1
    public static function disableValidator($disable = true)
259
    {
260 1
        self::$enabledValidators[static::class] = !$disable;
261 1
    }
262
263
    /**
264
     * Validate $value for $attribute
265
     *
266
     * @param string $attribute
267
     * @param mixed $value
268
     * @return bool|Error
269
     * @throws Exception
270
     */
271 10
    public static function validate($attribute, $value)
272
    {
273 10
        return static::describe()->validate(static::getColumnName($attribute), $value);
274
    }
275
276
    /**
277
     * Validate $data
278
     *
279
     * $data has to be an array of $attribute => $value
280
     *
281
     * @param array $data
282
     * @return array
283
     */
284 1
    public static function validateArray(array $data)
285
    {
286 1
        $result = $data;
287 1
        foreach ($result as $attribute => &$value) {
288 1
            $value = static::validate($attribute, $value);
289
        }
290 1
        return $result;
291
    }
292
293
    /**
294
     * @param EM $entityManager
295
     * @return self
296
     */
297 2
    public function setEntityManager(EM $entityManager)
298
    {
299 2
        $this->entityManager = $entityManager;
300 2
        return $this;
301
    }
302
303
    /**
304
     * Get the value from $attribute
305
     *
306
     * If there is a custom getter this method get called instead.
307
     *
308
     * @param string $attribute The variable to get
309
     * @return mixed|null
310
     * @throws IncompletePrimaryKey
311
     * @throws InvalidConfiguration
312
     * @link https://tflori.github.io/orm/entities.html Working with entities
313
     */
314 91
    public function __get($attribute)
315
    {
316 91
        $em = EM::getInstance(static::class);
317 91
        $getter = $em->getNamer()->getMethodName('get' . ucfirst($attribute), self::$namingSchemeMethods);
318
319 91
        if (method_exists($this, $getter) && is_callable([$this, $getter])) {
320 4
            return $this->$getter();
321
        } else {
322 87
            $col = static::getColumnName($attribute);
323 87
            $result = isset($this->data[$col]) ? $this->data[$col] : null;
324
325 87
            if (!$result && isset(static::$relations[$attribute]) && isset($this->entityManager)) {
326 1
                return $this->getRelated($attribute);
327
            }
328
329 86
            return $result;
330
        }
331
    }
332
333
    /**
334
     * Set $attribute to $value
335
     *
336
     * Tries to call custom setter before it stores the data directly. If there is a setter the setter needs to store
337
     * data that should be updated in the database to $data. Do not store data in $originalData as it will not be
338
     * written and give wrong results for dirty checking.
339
     *
340
     * The onChange event is called after something got changed.
341
     *
342
     * The method throws an error when the validation fails (also when the column does not exist).
343
     *
344
     * @param string $attribute The variable to change
345
     * @param mixed  $value     The value to store
346
     * @throws Error
347
     * @link https://tflori.github.io/orm/entities.html Working with entities
348
     */
349 26
    public function __set($attribute, $value)
350
    {
351 26
        $col = $this->getColumnName($attribute);
352
353 26
        $em = EM::getInstance(static::class);
354 26
        $setter = $em->getNamer()->getMethodName('set' . ucfirst($attribute), self::$namingSchemeMethods);
355
356 26
        if (method_exists($this, $setter) && is_callable([$this, $setter])) {
357 3
            $oldValue = $this->__get($attribute);
358 3
            $md5OldData = md5(serialize($this->data));
359 3
            $this->$setter($value);
360 3
            $changed = $md5OldData !== md5(serialize($this->data));
361
        } else {
362 23
            if (static::isValidatorEnabled() &&
363 23
                ($error = static::validate($attribute, $value)) instanceof Error
364
            ) {
365 1
                throw $error;
366
            }
367
368 19
            $oldValue = $this->__get($attribute);
369 19
            $changed = (isset($this->data[$col]) ? $this->data[$col] : null) !== $value;
370 19
            $this->data[$col] = $value;
371
        }
372
373 22
        if ($changed) {
374 19
            $this->onChange($attribute, $oldValue, $this->__get($attribute));
375
        }
376 22
    }
377
378
    /**
379
     * Fill the entity with $data
380
     *
381
     * When $checkMissing is set to true it also proves that the absent columns are nullable.
382
     *
383
     * @param array $data
384
     * @param bool  $ignoreUnknown
385
     * @param bool  $checkMissing
386
     * @throws Error
387
     * @throws UnknownColumn
388
     */
389 4
    public function fill(array $data, $ignoreUnknown = false, $checkMissing = false)
390
    {
391 4
        foreach ($data as $attribute => $value) {
392
            try {
393 4
                $this->__set($attribute, $value);
394 2
            } catch (UnknownColumn $e) {
395 2
                if (!$ignoreUnknown) {
396 4
                    throw $e;
397
                }
398
            }
399
        }
400
401 3
        if ($checkMissing && is_array($errors = $this->isValid())) {
402 1
            throw $errors[0];
403
        }
404 2
    }
405
406
    /**
407
     * Get related objects
408
     *
409
     * The difference between getRelated and fetch is that getRelated stores the fetched entities. To refresh set
410
     * $refresh to true.
411
     *
412
     * @param string $relation
413
     * @param bool   $refresh
414
     * @return mixed
415
     * @throws Exception\NoConnection
416
     * @throws Exception\NoEntity
417
     * @throws IncompletePrimaryKey
418
     * @throws InvalidConfiguration
419
     * @throws NoEntityManager
420
     * @throws UndefinedRelation
421
     */
422 11
    public function getRelated($relation, $refresh = false)
423
    {
424 11
        if ($refresh || !isset($this->relatedObjects[$relation])) {
425 9
            $this->relatedObjects[$relation] = $this->fetch($relation, true);
426
        }
427
428 11
        return $this->relatedObjects[$relation];
429
    }
430
431
    /**
432
     * Set $relation to $entity
433
     *
434
     * This method is only for the owner of a relation.
435
     *
436
     * @param string $relation
437
     * @param Entity $entity
438
     * @throws IncompletePrimaryKey
439
     * @throws InvalidRelation
440
     */
441 7
    public function setRelated($relation, Entity $entity = null)
442
    {
443 7
        $this::getRelation($relation)->setRelated($this, $entity);
444
445 4
        $this->relatedObjects[$relation] = $entity;
446 4
    }
447
448
    /**
449
     * Add relations for $relation to $entities
450
     *
451
     * This method is only for many-to-many relations.
452
     *
453
     * This method does not take care about already existing relations and will fail hard.
454
     *
455
     * @param string        $relation
456
     * @param Entity[]      $entities
457
     * @throws NoEntityManager
458
     */
459 8
    public function addRelated($relation, array $entities)
460
    {
461
        // @codeCoverageIgnoreStart
462
        if (func_num_args() === 3 && func_get_arg(2) instanceof EM) {
463
            trigger_error(
464
                'Passing EntityManager to addRelated is deprecated. Use ->setEntityManager() to overwrite',
465
                E_USER_DEPRECATED
466
            );
467
        }
468
        // @codeCoverageIgnoreEnd
469
470 8
        $this::getRelation($relation)->addRelated($this, $entities, $this->entityManager);
471 4
    }
472
473
    /**
474
     * Delete relations for $relation to $entities
475
     *
476
     * This method is only for many-to-many relations.
477
     *
478
     * @param string        $relation
479
     * @param Entity[]      $entities
480
     * @throws NoEntityManager
481
     */
482 8
    public function deleteRelated($relation, $entities)
483
    {
484
        // @codeCoverageIgnoreStart
485
        if (func_num_args() === 3 && func_get_arg(2) instanceof EM) {
486
            trigger_error(
487
                'Passing EntityManager to deleteRelated is deprecated. Use ->setEntityManager() to overwrite',
488
                E_USER_DEPRECATED
489
            );
490
        }
491
        // @codeCoverageIgnoreEnd
492
493 8
        $this::getRelation($relation)->deleteRelated($this, $entities, $this->entityManager);
494 4
    }
495
496
    /**
497
     * Resets the entity or $attribute to original data
498
     *
499
     * @param string $attribute Reset only this variable or all variables
500
     * @throws InvalidConfiguration
501
     */
502 8
    public function reset($attribute = null)
503
    {
504 8
        if (!empty($attribute)) {
505 3
            $col = static::getColumnName($attribute);
506 3
            if (isset($this->originalData[$col])) {
507 2
                $this->data[$col] = $this->originalData[$col];
508
            } else {
509 1
                unset($this->data[$col]);
510
            }
511 3
            return;
512
        }
513
514 5
        $this->data = $this->originalData;
515 5
    }
516
517
    /**
518
     * Save the entity to EntityManager
519
     *
520
     * @return Entity
521
     * @throws Exception\NoConnection
522
     * @throws Exception\NoEntity
523
     * @throws Exception\NotScalar
524
     * @throws Exception\UnsupportedDriver
525
     * @throws IncompletePrimaryKey
526
     * @throws InvalidConfiguration
527
     * @throws InvalidName
528
     * @throws NoEntityManager
529
     */
530 12
    public function save()
531
    {
532
        // @codeCoverageIgnoreStart
533
        if (func_num_args() === 1 && func_get_arg(0) instanceof EM) {
534
            trigger_error(
535
                'Passing EntityManager to save is deprecated. Use ->setEntityManager() to overwrite',
536
                E_USER_DEPRECATED
537
            );
538
        }
539
        // @codeCoverageIgnoreEnd
540
541 12
        $inserted = false;
542 12
        $updated = false;
543
544
        try {
545
            // this may throw if the primary key is auto incremented but we using this to omit duplicated code
546 12
            if (!$this->entityManager->sync($this)) {
547 2
                $this->entityManager->insert($this, false);
548 2
                $inserted = true;
549 5
            } elseif ($this->isDirty()) {
550 4
                $this->preUpdate();
551 4
                $this->entityManager->update($this);
552 7
                $updated = true;
553
            }
554 5
        } catch (IncompletePrimaryKey $e) {
555 5
            if (static::isAutoIncremented()) {
556 4
                $this->prePersist();
557 4
                $id = $this->entityManager->insert($this);
558 4
                $this->data[static::getColumnName(static::getPrimaryKeyVars()[0])] = $id;
559 4
                $inserted = true;
560
            } else {
561 1
                throw $e;
562
            }
563
        }
564
565 11
        if ($inserted || $updated) {
566 10
            $inserted && $this->postPersist();
567 10
            $updated && $this->postUpdate();
568 10
            $this->entityManager->sync($this, true);
569
        }
570
571 11
        return $this;
572
    }
573
574
    /**
575
     * Checks if entity or $attribute got changed
576
     *
577
     * @param string $attribute Check only this variable or all variables
578
     * @return bool
579
     * @throws InvalidConfiguration
580
     */
581 18
    public function isDirty($attribute = null)
582
    {
583 18
        if (!empty($attribute)) {
584 4
            $col = static::getColumnName($attribute);
585 4
            return (isset($this->data[$col]) ? $this->data[$col] : null) !==
586 4
                   (isset($this->originalData[$col]) ? $this->originalData[$col] : null);
587
        }
588
589 15
        ksort($this->data);
590 15
        ksort($this->originalData);
591
592 15
        return serialize($this->data) !== serialize($this->originalData);
593
    }
594
595
    /**
596
     * Check if the current data is valid
597
     *
598
     * Returns boolean true when valid otherwise an array of Errors.
599
     *
600
     * @return bool|Error[]
601
     */
602 1
    public function isValid()
603
    {
604 1
        $result = [];
605
606 1
        $presentColumns = [];
607 1
        foreach ($this->data as $column => $value) {
608 1
            $presentColumns[] = $column;
609 1
            $result[] = static::validate($column, $value);
610
        }
611
612 1
        foreach (static::describe() as $column) {
613 1
            if (!in_array($column->name, $presentColumns)) {
614 1
                $result[] = static::validate($column->name, null);
615
            }
616
        }
617
618 1
        $result = array_values(array_filter($result, function ($error) {
619 1
            return $error instanceof Error;
620 1
        }));
621
622 1
        return count($result) === 0 ? true : $result;
623
    }
624
625
    /**
626
     * Empty event handler
627
     *
628
     * Get called when something is changed with magic setter.
629
     *
630
     * @param string $attribute The variable that got changed.merge(node.inheritedProperties)
631
     * @param mixed  $oldValue The old value of the variable
632
     * @param mixed  $value The new value of the variable
633
     */
634 6
    public function onChange($attribute, $oldValue, $value)
3 ignored issues
show
Unused Code introduced by
The parameter $attribute is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Unused Code introduced by
The parameter $oldValue is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Unused Code introduced by
The parameter $value is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
635
    {
636 6
    }
637
638
    /**
639
     * Empty event handler
640
     *
641
     * Get called when the entity get initialized.
642
     *
643
     * @param bool $new Whether or not the entity is new or from database
644
     */
645 113
    public function onInit($new)
646
    {
647 113
    }
648
649
    /**
650
     * Empty event handler
651
     *
652
     * Get called before the entity get updated in database.
653
     */
654 3
    public function preUpdate()
655
    {
656 3
    }
657
658
    /**
659
     * Empty event handler
660
     *
661
     * Get called before the entity get inserted in database.
662
     */
663 3
    public function prePersist()
664
    {
665 3
    }
666
667
668
    // DEPRECATED stuff
669
670
    /**
671
     * Empty event handler
672
     *
673
     * Get called after the entity got inserted in database.
674
     */
675 5
    public function postPersist()
676
    {
677 5
    }
678
679
    /**
680
     * Empty event handler
681
     *
682
     * Get called after the entity got updated in database.
683
     */
684 3
    public function postUpdate()
685
    {
686 3
    }
687
688
    /**
689
     * Fetches related objects
690
     *
691
     * For relations with cardinality many it returns an EntityFetcher. Otherwise it returns the entity.
692
     *
693
     * It will throw an error for non owner when the key is incomplete.
694
     *
695
     * @param string        $relation      The relation to fetch
696
     * @param bool          $getAll
697
     * @return Entity|Entity[]|EntityFetcher
698
     * @throws NoEntityManager
699
     */
700 19
    public function fetch($relation, $getAll = false)
701
    {
702
        // @codeCoverageIgnoreStart
703
        if ($getAll instanceof EM || func_num_args() === 3 && $getAll === null) {
704
            $getAll = func_num_args() === 3 ? func_get_arg(2) : false;
705
            trigger_error(
706
                'Passing EntityManager to fetch is deprecated. Use ->setEntityManager() to overwrite',
707
                E_USER_DEPRECATED
708
            );
709
        }
710
        // @codeCoverageIgnoreEnd
711
712 19
        $relation = $this::getRelation($relation);
713
714 19
        if ($getAll) {
715 4
            return $relation->fetchAll($this, $this->entityManager);
716
        } else {
717 15
            return $relation->fetch($this, $this->entityManager);
718
        }
719
    }
720
721
    /**
722
     * Get the primary key
723
     *
724
     * @return array
725
     * @throws IncompletePrimaryKey
726
     */
727 38
    public function getPrimaryKey()
728
    {
729 38
        $primaryKey = [];
730 38
        foreach (static::getPrimaryKeyVars() as $attribute) {
731 38
            $value = $this->$attribute;
732 38
            if ($value === null) {
733 4
                throw new IncompletePrimaryKey('Incomplete primary key - missing ' . $attribute);
734
            }
735 36
            $primaryKey[$attribute] = $value;
736
        }
737 34
        return $primaryKey;
738
    }
739
740
    /**
741
     * Get current data
742
     *
743
     * @return array
744
     * @internal
745
     */
746 20
    public function getData()
747
    {
748 20
        return $this->data;
749
    }
750
751
    /**
752
     * Set new original data
753
     *
754
     * @param array $data
755
     * @internal
756
     */
757 18
    public function setOriginalData(array $data)
758
    {
759 18
        $this->originalData = $data;
760 18
    }
761
762
    /**
763
     * String representation of data
764
     *
765
     * @link http://php.net/manual/en/serializable.serialize.php
766
     * @return string
767
     */
768 2
    public function serialize()
769
    {
770 2
        return serialize([$this->data, $this->relatedObjects]);
771
    }
772
773
    /**
774
     * Constructs the object
775
     *
776
     * @link http://php.net/manual/en/serializable.unserialize.php
777
     * @param string $serialized The string representation of data
778
     */
779 3
    public function unserialize($serialized)
780
    {
781 3
        list($this->data, $this->relatedObjects) = unserialize($serialized);
782 3
        $this->entityManager = EM::getInstance(static::class);
783 3
        $this->onInit(false);
784 3
    }
785
786
    /**
787
     * @return string
788
     * @deprecated use getOption from EntityManager
789
     * @codeCoverageIgnore deprecated
790
     */
791
    public static function getTableNameTemplate()
792
    {
793
        return static::$tableNameTemplate;
794
    }
795
796
    /**
797
     * @param string $tableNameTemplate
798
     * @deprecated use setOption from EntityManager
799
     * @codeCoverageIgnore deprecated
800
     */
801
    public static function setTableNameTemplate($tableNameTemplate)
802
    {
803
        static::$tableNameTemplate = $tableNameTemplate;
804
    }
805
806
    /**
807
     * @return string
808
     * @deprecated use getOption from EntityManager
809
     * @codeCoverageIgnore deprecated
810
     */
811
    public static function getNamingSchemeTable()
812
    {
813
        return static::$namingSchemeTable;
814
    }
815
816
    /**
817
     * @param string $namingSchemeTable
818
     * @deprecated use setOption from EntityManager
819
     * @codeCoverageIgnore deprecated
820
     */
821
    public static function setNamingSchemeTable($namingSchemeTable)
822
    {
823
        static::$namingSchemeTable = $namingSchemeTable;
824
    }
825
826
    /**
827
     * @return string
828
     * @deprecated use getOption from EntityManager
829
     * @codeCoverageIgnore deprecated
830
     */
831
    public static function getNamingSchemeColumn()
832
    {
833
        return static::$namingSchemeColumn;
834
    }
835
836
    /**
837
     * @param string $namingSchemeColumn
838
     * @deprecated use setOption from EntityManager
839
     * @codeCoverageIgnore deprecated
840
     */
841
    public static function setNamingSchemeColumn($namingSchemeColumn)
842
    {
843
        static::$namingSchemeColumn = $namingSchemeColumn;
844
    }
845
846
    /**
847
     * @return string
848
     * @deprecated use getOption from EntityManager
849
     * @codeCoverageIgnore deprecated
850
     */
851
    public static function getNamingSchemeMethods()
852
    {
853
        return static::$namingSchemeMethods;
854
    }
855
856
    /**
857
     * @param string $namingSchemeMethods
858
     * @deprecated use setOption from EntityManager
859
     * @codeCoverageIgnore deprecated
860
     */
861
    public static function setNamingSchemeMethods($namingSchemeMethods)
862
    {
863
        static::$namingSchemeMethods = $namingSchemeMethods;
864
    }
865
}
866