edmondscommerce/doctrine-static-meta

View on GitHub
src/Entity/Fields/Interfaces/Boolean/DefaultsNullFieldInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace EdmondsCommerce\DoctrineStaticMeta\Entity\Fields\Interfaces\Boolean;

interface DefaultsNullFieldInterface
{
    public const PROP_DEFAULTS_NULL = 'defaultsNull';

    public const DEFAULT_DEFAULTS_NULL = null;

    public function isDefaultsNull(): ?bool;
}