PostSerializableInterface.php 168 B

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