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
<?php
namespace Wpae\Http;
class JsonResponse extends Response
{
protected $headers = array('Content-Type' => 'Application/Json');
protected function sendContent()
{
echo json_encode($this->content);
}
}