blob: a86a5bd170c7d20ad454ed3358c0fd58bcad3e50 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<?php
declare(strict_types=1);
namespace AugustOffensive\view;
use AugustOffensive\controller;
use AugustOffensive\model;
/**
* Outputs the JSON result by communicating with the controller.
*/
class Result
{
/**
* Prepares the output and environment for the front end of the service.
*
* @param \Connection $connection "needs to know" model exists
*
* @return Result
*/
public function __construct (model\Connection $connection)
{
header("Content-Type: application/json");
//
}
/**
* Communicates with the controller to generate the JSON result.
*
* @return string $result resulting sendback object generated from query.
*/
public function collect (): string
{
//
return json_encode(array("Result-Type" => "", "Content" => array()));
}
}
|