Completed
Push — master ( ba0dc9...449151 )
by John
01:49
created
examples/geophone/index.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -9,26 +9,26 @@
 block discarded – undo
9 9
 $router = new \LunixREST\Router\Router($accessControl, $throttle, $responseFactory, $endpointFactory);
10 10
 
11 11
 try {
12
-	$request = \LunixREST\Request\Request::createFromURL("GET", [], [], '127.0.0.1',  "/1/123456/phonenumbers/6517855237.json");// \LunixREST\Request\Request::createFromURL($_SERVER['REQUEST_METHOD'], getallheaders(), $_REQUEST, $_SERVER['REMOTE_ADDR'], $_SERVER['REQUEST_URI']);
12
+	$request = \LunixREST\Request\Request::createFromURL("GET", [], [], '127.0.0.1', "/1/123456/phonenumbers/6517855237.json"); // \LunixREST\Request\Request::createFromURL($_SERVER['REQUEST_METHOD'], getallheaders(), $_REQUEST, $_SERVER['REMOTE_ADDR'], $_SERVER['REQUEST_URI']);
13 13
 
14 14
     try {
15 15
         $response = $router->route($request);
16 16
         echo $response->getAsString();
17
-    } catch(\LunixREST\Exceptions\InvalidAPIKeyException $e){
17
+    } catch (\LunixREST\Exceptions\InvalidAPIKeyException $e) {
18 18
         header('400 Bad Request', true, 400);
19
-    } catch(\LunixREST\Endpoint\Exceptions\UnknownEndpointException $e){
19
+    } catch (\LunixREST\Endpoint\Exceptions\UnknownEndpointException $e) {
20 20
         header('404 Not Found', true, 404);
21
-    } catch(\LunixREST\Response\Exceptions\UnknownResponseTypeException $e){
21
+    } catch (\LunixREST\Response\Exceptions\UnknownResponseTypeException $e) {
22 22
         header('404 Not Found', true, 404);
23
-    } catch(\LunixREST\Exceptions\AccessDeniedException $e){
23
+    } catch (\LunixREST\Exceptions\AccessDeniedException $e) {
24 24
         header('403 Access Denied', true, 403);
25
-    }  catch(\LunixREST\Exceptions\ThrottleLimitExceededException $e){
25
+    } catch (\LunixREST\Exceptions\ThrottleLimitExceededException $e) {
26 26
         header('429 Too Many Requests', true, 429);
27
-    } catch(Exception $e){
27
+    } catch (Exception $e) {
28 28
         header('500 Internal Server Error', true, 500);
29 29
     }
30
-} catch(\LunixREST\Exceptions\InvalidRequestFormatException $e){
30
+} catch (\LunixREST\Exceptions\InvalidRequestFormatException $e) {
31 31
 	header('400 Bad Request', 400);
32
-} catch(Exception $e){
32
+} catch (Exception $e) {
33 33
 	header('500 Internal Server Error', true, 500);
34 34
 }
Please login to merge, or discard this patch.
examples/geophone/src/EndpointFactory/EndpointFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      * @throws UnknownEndpointException
22 22
      */
23 23
     public function getEndpoint(string $name, string $version): Endpoint {
24
-        switch($version) {
24
+        switch ($version) {
25 25
             case "1":
26 26
                 switch (strtolower($name)) {
27 27
                     case "phonenumbers":
Please login to merge, or discard this patch.
examples/geophone/src/Endpoints/v1/PhoneNumbers.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,6 +20,6 @@
 block discarded – undo
20 20
 
21 21
 
22 22
     public function get(Request $request): ResponseData{
23
-		return $this->geoPhone->lookupNumber($request->getInstance());
24
-	}
23
+        return $this->geoPhone->lookupNumber($request->getInstance());
24
+    }
25 25
 }
Please login to merge, or discard this patch.
examples/geophone/src/Models/GeoPhone.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     /**
15 15
      * @param string $filename
16 16
      */
17
-    public function __construct($filename = 'data.csv'){
17
+    public function __construct($filename = 'data.csv') {
18 18
         $this->fileHandle = fopen($filename, 'r');
19 19
     }
20 20
 
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
         $nextThree = substr($phoneNumber, 3, 3);
30 30
 
31 31
         while (($data = fgetcsv($this->fileHandle)) !== FALSE) {
32
-            if($areaCode == $data[0] && $nextThree == $data[1]){
32
+            if ($areaCode == $data[0] && $nextThree == $data[1]) {
33 33
                 return new LookupResponse($data[2], $data[3]);
34 34
             }
35 35
         }
Please login to merge, or discard this patch.