D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
local
/
psa
/
admin
/
plib
/
vendor
/
jms
/
serializer
/
src
/
Filename :
NullAwareVisitorInterface.php
back
Copy
<?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; }