1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Mapping;
use Doctrine\ORM\Mapping\InverseSideMapping;
use PHPUnit\Framework\TestCase;
use function assert;
use function serialize;
use function unserialize;
final class InverseSideMappingTest extends TestCase
{
public function testItSurvivesSerialization(): void
{
$mapping = new MyInverseAssociationMapping(
fieldName: 'foo',
sourceEntity: self::class,
targetEntity: self::class,
);
$mapping->mappedBy = 'bar';
$resurrectedMapping = unserialize(serialize($mapping));
assert($resurrectedMapping instanceof InverseSideMapping);
self::assertSame('bar', $resurrectedMapping->mappedBy);
}
}
class MyInverseAssociationMapping extends InverseSideMapping
{
}
|