File "TypedNoDefaultReflectionPropertyBase.php"

Full Path: /home/warrior1/public_html/languages/wp-content/plugins/mailpoet/vendor-prefixed/doctrine/persistence/src/Persistence/Reflection/TypedNoDefaultReflectionPropertyBase.php
File size: 836 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Doctrine\Persistence\Reflection;
if (!defined('ABSPATH')) exit;
use Closure;
use ReturnTypeWillChange;
use function assert;
trait TypedNoDefaultReflectionPropertyBase
{
 #[\ReturnTypeWillChange]
 public function getValue($object = null)
 {
 return $object !== null && $this->isInitialized($object) ? parent::getValue($object) : null;
 }
 #[\ReturnTypeWillChange]
 public function setValue($object, $value = null)
 {
 if ($value === null && $this->hasType() && !$this->getType()->allowsNull()) {
 $propertyName = $this->getName();
 $unsetter = function () use($propertyName) : void {
 unset($this->{$propertyName});
 };
 $unsetter = $unsetter->bindTo($object, $this->getDeclaringClass()->getName());
 assert($unsetter instanceof Closure);
 $unsetter();
 return;
 }
 parent::setValue($object, $value);
 }
}