NonNegatable.php 295 B

123456789101112131415161718
  1. <?php
  2. /*
  3. * Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
  4. * SPDX-License-Identifier: MIT
  5. */
  6. declare(strict_types=1);
  7. namespace Respect\Validation;
  8. /** Interface for validation rules */
  9. /**
  10. * @author Alexandre Gomes Gaigalas <alganet@gmail.com>
  11. */
  12. interface NonNegatable
  13. {
  14. }