MediaWiki  REL1_21
ApiFormatYaml.php
Go to the documentation of this file.
00001 <?php
00031 class ApiFormatYaml extends ApiFormatJson {
00032 
00033         public function getMimeType() {
00034                 return 'application/yaml';
00035         }
00036 
00037         public function getDescription() {
00038                 return 'Output data in YAML format' . ApiFormatBase::getDescription();
00039         }
00040 }