You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
140 B

  1. <?php
  2. namespace Percolator\Formats;
  3. class Mf2 {
  4. public static function parse($mf2) {
  5. return [
  6. 'type' => 'entry'
  7. ];
  8. }
  9. }