blob: 5241e0c6fdf3cba00746ae27555e867c595f6448 (
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
39
|
<?php
namespace AugustOffensive\view;
include '../controller/Controller.php';
include '../model/Connection.php';
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 (Connection $connection)
{
header("Content-Type: application/json");
//
}
/**
* Communicates with the controller to generate the JSON result.
*
* @return array $result resulting sendback object generated from query.
*/
public function collect ()
{
//
return array();
}
}
|