AllGuardsTrait.php 223 B

123456789101112131415
  1. <?php
  2. declare(strict_types=1);
  3. namespace Laminas\Stdlib\Guard;
  4. /**
  5. * An aggregate for all guard traits
  6. */
  7. trait AllGuardsTrait
  8. {
  9. use ArrayOrTraversableGuardTrait;
  10. use EmptyGuardTrait;
  11. use NullGuardTrait;
  12. }