| <?php | |
| namespace Percolator\Formats; | |
| 
 | |
| class Mf2 { | |
| 
 | |
|   public static function parse($mf2) { | |
|     return [ | |
|       'type' => 'entry' | |
|     ]; | |
|   } | |
| 
 | |
| }
 |