Your IP : 216.73.216.220


Current Path : /var/www/html/vendor/jms/serializer/src/JMS/Serializer/
Upload File :
Current File : /var/www/html/vendor/jms/serializer/src/JMS/Serializer/NullAwareVisitorInterface.php

<?php

namespace JMS\Serializer;

interface NullAwareVisitorInterface extends VisitorInterface
{
    /**
     * 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
     *
     * @return bool
     */
    public function isNull($value);
}