mirror of
https://github.com/php/phd.git
synced 2026-03-24 07:02:07 +01:00
18 lines
340 B
PHP
18 lines
340 B
PHP
<?php
|
|
namespace phpdotnet\phd;
|
|
|
|
class Package_IDE_JSON extends Package_IDE_Base {
|
|
|
|
public function __construct() {
|
|
$this->registerFormatName('IDE-JSON');
|
|
$this->setExt(Config::ext() === null ? ".json" : Config::ext());
|
|
}
|
|
|
|
public function parseFunction() {
|
|
return json_encode($this->function);
|
|
}
|
|
|
|
}
|
|
|
|
|