Nullable.php 274 B

123456789101112131415161718192021
  1. <?php
  2. namespace Dcat\Admin\Form\Field;
  3. use Dcat\Admin\Form\Field;
  4. class Nullable extends Field
  5. {
  6. public function __construct()
  7. {
  8. }
  9. public function __call($method, $parameters)
  10. {
  11. return $this;
  12. }
  13. public function render()
  14. {
  15. }
  16. }