PostSerializableInterface.php 212 B

123456789
  1. <?php
  2. namespace DNB;
  3. interface PostSerializableInterface {
  4. public function toPostParams(): array;
  5. public static function fromPostParams(array $post): self;
  6. public static function getPostParams();
  7. }