tacnoman/dephpug

View on GitHub
src/Dephpug/Exporter/Type/ResourceExporter.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Dephpug\Exporter\Type;

use Dephpug\Exporter\iExporter;

class ResourceExporter implements iExporter
{
    public static function getType()
    {
        return 'resource';
    }

    public function getExportedVar($xml)
    {
        return (string) '['.$xml->property.']';
    }
}