Your IP : 216.73.216.97


Current Path : /var/www/clients/client3/web2/web/vendor/jms/serializer/src/
Upload File :
Current File : /var/www/clients/client3/web2/web/vendor/jms/serializer/src/NullAwareVisitorInterface.php

<?php

declare(strict_types=1);

namespace JMS\Serializer;

interface NullAwareVisitorInterface
{
    /**
     * Determine if a value conveys a null value.
     * An example could be an xml element (Dom, SimpleXml, ...) that is tagged with a xsi:nil attribute
     *
     * @param mixed $value
     */
    public function isNull($value): bool;
}