Remove test controller.
authorCameron Ball <c.ball1729@gmail.com>
Sun, 4 Jan 2015 09:03:31 +0000 (17:03 +0800)
committerCameron Ball <c.ball1729@gmail.com>
Sun, 4 Jan 2015 09:03:31 +0000 (17:03 +0800)
Controllers/DownloadTestController.php [deleted file]

diff --git a/Controllers/DownloadTestController.php b/Controllers/DownloadTestController.php
deleted file mode 100644 (file)
index 1f92ab4..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-<?php\r
-\r
-namespace Controllers;\r
-\r
-use Controllers\IDivineController;\r
-use Services\IUserQuota;\r
-\r
-class DownloadTestController implements IDivineController\r
-{\r
-    private $_quotaManager;\r
-    \r
-    public function __construct(\r
-        IUserQuota $quotaManager\r
-    ) {\r
-        $this->_quotaManager = $quotaManager;\r
-    }\r
-    \r
-    public function indexAction() {\r
-        $quota = (($this->_quotaManager->getCurrentUserQuotaRemaining())/1000)/1000;\r
-        echo $quota;\r
-    }\r
-}\r