diff options
| -rw-r--r-- | src/AppBundle/Controller/AllDataController.php | 3 | ||||
| -rw-r--r-- | src/AppBundle/Controller/HomeController.php | 1 | ||||
| -rw-r--r-- | tests/AppBundle/Controller/MathControllerTest.php | 19 | 
3 files changed, 1 insertions, 22 deletions
| diff --git a/src/AppBundle/Controller/AllDataController.php b/src/AppBundle/Controller/AllDataController.php index 78b4752..86ec7c5 100644 --- a/src/AppBundle/Controller/AllDataController.php +++ b/src/AppBundle/Controller/AllDataController.php @@ -16,7 +16,7 @@ class AllDataController extends Controller      {          // Get cURL resource          $curl = curl_init(); -        curl_setopt($curl, CURLOPT_URL, "https://pollutometerapi.azurewebsites.net/api/Readings"); +        curl_setopt($curl, CURLOPT_URL, "https://pollutometerapi.azurewebsites.net/api/Readings/lastweek");          curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-type: application/json')); // Assuming you're requesting JSON          curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);          // Send the request & save response to $resp @@ -40,6 +40,5 @@ class AllDataController extends Controller          return $this->render('default/AllDataPage.html.twig',$parametersToTwig); -      }  }
\ No newline at end of file diff --git a/src/AppBundle/Controller/HomeController.php b/src/AppBundle/Controller/HomeController.php index ca2043e..d84ab76 100644 --- a/src/AppBundle/Controller/HomeController.php +++ b/src/AppBundle/Controller/HomeController.php @@ -57,5 +57,4 @@ class HomeController extends Controller          return $this->render('default/index.html.twig', $data);      } -  } diff --git a/tests/AppBundle/Controller/MathControllerTest.php b/tests/AppBundle/Controller/MathControllerTest.php deleted file mode 100644 index 523f9e5..0000000 --- a/tests/AppBundle/Controller/MathControllerTest.php +++ /dev/null @@ -1,19 +0,0 @@ -<?php - -namespace Tests\AppBundle\Controller; - -use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; - -class MathControllerTest extends WebTestCase -{ -    public function testAQIMath() -    { -        $CO = 1; -        $bpLowCO = 0; -        $bpHiCO = 4; -        $bpLowIndex = 0; -        $bpHiIndex = 50; -        $AQI = ((50 - 0)/(4 - 0))*(1-0)+0; -        $this->assertEquals(12.5, $AQI); -    } -}
\ No newline at end of file |