| Current Path : /var/www/clients/client3/web2/web/vendor/jms/serializer/src/ |
| 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;
}