Test Failed
Pull Request — master (#62)
by
unknown
03:26
created
Entity/RefreshToken.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@
 block discarded – undo
113 113
     /**
114 114
      * Get valid.
115 115
      *
116
-     * @return \DateTime
116
+     * @return string
117 117
      */
118 118
     public function getValid()
119 119
     {
Please login to merge, or discard this patch.
Model/RefreshTokenInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
     /**
68 68
      * Get user.
69 69
      *
70
-     * @return $username
70
+     * @return string
71 71
      */
72 72
     public function getUsername();
73 73
 
Please login to merge, or discard this patch.
Service/RefreshToken.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
      *
50 50
      * @param Request $request
51 51
      *
52
-     * @return mixed
52
+     * @return \Symfony\Component\HttpFoundation\Response|\Lexik\Bundle\JWTAuthenticationBundle\Response\JWTAuthenticationSuccessResponse
53 53
      *
54 54
      * @throws AuthenticationException
55 55
      */
Please login to merge, or discard this patch.
Event/AddTokenResponseEvent.php 2 patches
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -19,9 +19,17 @@
 block discarded – undo
19 19
 		$this->token = $token;
20 20
 		$this->response = $response;
21 21
 	}
22
+
23
+	/**
24
+	 * @return string|null
25
+	 */
22 26
 	public function getToken(){
23 27
 		return $this->token;
24 28
 	}
29
+
30
+	/**
31
+	 * @return string|null
32
+	 */
25 33
 	public function getResponse(){
26 34
 		return $this->response;
27 35
 	}
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -15,20 +15,20 @@
 block discarded – undo
15 15
 
16 16
 class AddTokenResponseEvent extends Event {
17 17
 	private $data = [];
18
-	public function __construct($token, Response $response){
18
+	public function __construct($token, Response $response) {
19 19
 		$this->token = $token;
20 20
 		$this->response = $response;
21 21
 	}
22
-	public function getToken(){
22
+	public function getToken() {
23 23
 		return $this->token;
24 24
 	}
25
-	public function getResponse(){
25
+	public function getResponse() {
26 26
 		return $this->response;
27 27
 	}
28
-	public function setData(array $data){
28
+	public function setData(array $data) {
29 29
 		$this->data = $data;
30 30
 	}
31
-	public function getData(){
31
+	public function getData() {
32 32
 		return $this->data;
33 33
 	}
34 34
 }
35 35
\ No newline at end of file
Please login to merge, or discard this patch.
EventListener/TokenExtractor/RequestHeaderTokenExtractorEventListener.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,14 +14,14 @@
 block discarded – undo
14 14
 
15 15
 class RequestHeaderTokenExtractorEventListener {
16 16
 	private $name;
17
-	public function __construct($name){
17
+	public function __construct($name) {
18 18
 		$this->name = $name;
19 19
 	}
20
-	public function onGetToken(GetTokenRequestEvent $event){
20
+	public function onGetToken(GetTokenRequestEvent $event) {
21 21
 		$request = $event->getRequest();
22 22
 		$refreshTokenString = $request->headers->get($this->name);
23 23
 
24
-		if($refreshTokenString){
24
+		if ($refreshTokenString) {
25 25
             $event->setToken($refreshTokenString);
26 26
             $event->stopPropagation();
27 27
         }
Please login to merge, or discard this patch.
EventListener/TokenExtractor/RequestCookieTokenExtractorEventListener.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -15,14 +15,14 @@
 block discarded – undo
15 15
 
16 16
 class RequestCookieTokenExtractorEventListener {
17 17
 	private $name;
18
-	public function __construct($name){
18
+	public function __construct($name) {
19 19
 		$this->name = $name;
20 20
 	}
21
-	public function onGetToken(GetTokenRequestEvent $event){
21
+	public function onGetToken(GetTokenRequestEvent $event) {
22 22
 		$request = $event->getRequest();
23 23
 		$refreshTokenString = $request->cookies->get($this->name);
24 24
 
25
-		if($refreshTokenString){
25
+		if ($refreshTokenString) {
26 26
             $event->setToken($refreshTokenString);
27 27
             $event->stopPropagation();
28 28
         }
Please login to merge, or discard this patch.
EventListener/TokenExtractor/RequestBodyTokenExtractorEventListener.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,10 +14,10 @@  discard block
 block discarded – undo
14 14
 
15 15
 class RequestBodyTokenExtractorEventListener {
16 16
 	private $name;
17
-    public function __construct($name){
17
+    public function __construct($name) {
18 18
 		$this->name = $name;
19 19
 	}
20
-	public function onGetToken(GetTokenRequestEvent $event){
20
+	public function onGetToken(GetTokenRequestEvent $event) {
21 21
 		$request = $event->getRequest();
22 22
 		$refreshTokenString = null;
23 23
         if ($request->headers->get('content_type') == 'application/json') {
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
             $refreshTokenString = $request->request->get($this->name);
31 31
         }
32 32
 
33
-        if($refreshTokenString){
33
+        if ($refreshTokenString) {
34 34
             $event->setToken($refreshTokenString);
35 35
             $event->stopPropagation();
36 36
         }
Please login to merge, or discard this patch.
EventListener/TokenSetter/ResponseHeaderTokenSetterEventListener.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,10 +15,10 @@
 block discarded – undo
15 15
 
16 16
 class ResponseHeaderTokenSetterEventListener {
17 17
 	private $name;
18
-	public function __construct($name){
18
+	public function __construct($name) {
19 19
 		$this->name = $name;
20 20
 	}
21
-	public function onAddToken(AddTokenResponseEvent $event){
21
+	public function onAddToken(AddTokenResponseEvent $event) {
22 22
 		$response = $event->getResponse();
23 23
 		$token = $event->getToken();
24 24
 		$response->headers->set($this->name, $token);
Please login to merge, or discard this patch.
EventListener/TokenSetter/ResponseBodyTokenSetterEventListener.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,10 +15,10 @@
 block discarded – undo
15 15
 
16 16
 class ResponseBodyTokenSetterEventListener {
17 17
 	private $name;
18
-	public function __construct($name){
18
+	public function __construct($name) {
19 19
 		$this->name = $name;
20 20
 	}
21
-	public function onAddToken(AddTokenResponseEvent $event){
21
+	public function onAddToken(AddTokenResponseEvent $event) {
22 22
 		$token = $event->getToken();
23 23
 		$data = $event->getData();
24 24
 		$data[$this->name] = $token;
Please login to merge, or discard this patch.