| 123456789101112131415161718192021 |
- <?php
- namespace Dcat\Admin\Form\Field;
- use Dcat\Admin\Form\Field;
- class Nullable extends Field
- {
- public function __construct()
- {
- }
- public function __call($method, $parameters)
- {
- return $this;
- }
- public function render()
- {
- }
- }
|