?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/dev-uz-avocat/wp-content/plugins/wp-all-export/src/Http/



?? Go up: /home/webdevt/www/dev-uz-avocat/wp-content/plugins/wp-all-export/src

?? Viewing: JsonResponse.php

<?php

namespace Wpae\Http;


class JsonResponse extends Response
{
    protected $headers = array('Content-Type' => 'Application/Json');

    protected function sendContent()
    {
        echo json_encode($this->content);
    }
}


??

??