aboutsummaryrefslogtreecommitdiff
path: root/private/Model/Query.php
diff options
context:
space:
mode:
authorKevin J Hoerr <kjhoerr@submelon.tech>2018-08-26 01:38:28 -0400
committerKevin Hoerr <kjhoerr@submelon.tech>2018-08-31 23:24:45 -0400
commit0965d62be00a7820f97284704dc71f37e661b412 (patch)
tree5a5c9d69062e24aa926eb30447c5ff27e0a65492 /private/Model/Query.php
parent1e3946f04b5b602d3869a285d897acb0ba2b3c35 (diff)
downloadaugust-offensive-0965d62be00a7820f97284704dc71f37e661b412.tar.gz
august-offensive-0965d62be00a7820f97284704dc71f37e661b412.tar.bz2
august-offensive-0965d62be00a7820f97284704dc71f37e661b412.zip
Begin migration to Rust; Add actix-web, diesel as main dependencies
Diffstat (limited to 'private/Model/Query.php')
-rw-r--r--private/Model/Query.php71
1 files changed, 0 insertions, 71 deletions
diff --git a/private/Model/Query.php b/private/Model/Query.php
deleted file mode 100644
index 7eca836..0000000
--- a/private/Model/Query.php
+++ /dev/null
@@ -1,71 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace AugustOffensive\Model;
-
-/**
- * Query object for storing relevant query information.
- */
-class Query
-{
- /** @var array $path array of request structure. */
- private $path;
-
- /** @var string $request type of request made to the server. */
- private $request;
-
- /** @var array $content structure of information sent to the server. */
- private $content;
-
- /**
- * Store query information.
- *
- * @param array $path The array that holds the original request structure.
- * @param string $request The request method made to the server.
- * @param array $content The content object sent by the request.
- *
- * @return Query
- */
- public function __construct (
- array $path,
- string $request,
- array $content
- ) {
- $this->path = $path;
- $this->request = $request;
- $this->content = $content;
-
- return $this;
- }
-
- /**
- * Returns the request path made by the client.
- *
- * @return array
- */
- public function getPath (): array
- {
- return $this->path;
- }
-
- /**
- * Returns the request type made by the client.
- *
- * @return string
- */
- public function getRequest (): string
- {
- return $this->request;
- }
-
- /**
- * Returns the information that is built from outside the request path.
- *
- * @return array
- */
- public function getContent (): array
- {
- return $this->content;
- }
-}