Completed
Push — master ( 2fde8c...15bdae )
by John
02:29
created
src/APIRequest/HeaderParser/DefaultHeaderParser.php 1 patch
Braces   +4 added lines, -8 removed lines patch added patch discarded remove patch
@@ -6,8 +6,7 @@  discard block
 block discarded – undo
6 6
  * Class DefaultHeaderParser
7 7
  * @package LunixREST\APIRequest\HeaderParser
8 8
  */
9
-class DefaultHeaderParser implements HeaderParser
10
-{
9
+class DefaultHeaderParser implements HeaderParser {
11 10
 
12 11
     /**
13 12
      * @var string
@@ -18,8 +17,7 @@  discard block
 block discarded – undo
18 17
      * DefaultHeaderParser constructor.
19 18
      * @param string $apiKeyHeaderKey
20 19
      */
21
-    public function __construct($apiKeyHeaderKey = 'x-api-key')
22
-    {
20
+    public function __construct($apiKeyHeaderKey = 'x-api-key') {
23 21
         $this->apiKeyHeaderKey = $apiKeyHeaderKey;
24 22
     }
25 23
 
@@ -63,8 +61,7 @@  discard block
 block discarded – undo
63 61
      * @param array $headers
64 62
      * @return null
65 63
      */
66
-    protected function findAPIKey(array $headers)
67
-    {
64
+    protected function findAPIKey(array $headers) {
68 65
         foreach ($headers as $key => $values) {
69 66
             if (strtolower($key) == strtolower($this->apiKeyHeaderKey)) {
70 67
                 foreach($values as $value) {
@@ -79,8 +76,7 @@  discard block
 block discarded – undo
79 76
      * @param array $headers
80 77
      * @return null
81 78
      */
82
-    protected function getContentType(array $headers)
83
-    {
79
+    protected function getContentType(array $headers) {
84 80
         foreach ($headers as $key => $values) {
85 81
             if (strtolower($key) == 'content-type') {
86 82
                 foreach ($values as $value) {
Please login to merge, or discard this patch.
src/APIRequest/HeaderParser/ParsedHeaders.php 1 patch
Braces   +4 added lines, -8 removed lines patch added patch discarded remove patch
@@ -6,8 +6,7 @@  discard block
 block discarded – undo
6 6
  * Class ParsedHeaders
7 7
  * @package LunixREST\APIRequest\HeaderParser
8 8
  */
9
-class ParsedHeaders
10
-{
9
+class ParsedHeaders {
11 10
     /**
12 11
      * @var array
13 12
      */
@@ -27,8 +26,7 @@  discard block
 block discarded – undo
27 26
      * @param array $acceptableMIMETypes
28 27
      * @param $APIKey
29 28
      */
30
-    public function __construct($contentType, array $acceptableMIMETypes, $APIKey)
31
-    {
29
+    public function __construct($contentType, array $acceptableMIMETypes, $APIKey) {
32 30
         $this->contentType = $contentType;
33 31
         $this->acceptableMIMETypes = $acceptableMIMETypes;
34 32
         $this->APIKey = $APIKey;
@@ -37,8 +35,7 @@  discard block
 block discarded – undo
37 35
     /**
38 36
      * @return mixed
39 37
      */
40
-    public function getContentType()
41
-    {
38
+    public function getContentType() {
42 39
         return $this->contentType;
43 40
     }
44 41
 
@@ -53,8 +50,7 @@  discard block
 block discarded – undo
53 50
     /**
54 51
      * @return mixed
55 52
      */
56
-    public function getAPIKey()
57
-    {
53
+    public function getAPIKey() {
58 54
         return $this->APIKey;
59 55
     }
60 56
 }
Please login to merge, or discard this patch.
src/APIRequest/HeaderParser/HeaderParser.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,8 +6,7 @@
 block discarded – undo
6 6
  * Interface HeaderParser
7 7
  * @package LunixREST\APIRequest\HeaderParser
8 8
  */
9
-interface HeaderParser
10
-{
9
+interface HeaderParser {
11 10
     /**
12 11
      * @param array $headers
13 12
      * @return ParsedHeaders
Please login to merge, or discard this patch.