Completed
Push — master ( 947ba3...6c8f85 )
by Neomerx
11:36
created
src/Contracts/Entities/ClientInterface.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     /**
34 34
      * @return string|null
35 35
      */
36
-    public function getName(): ?string;
36
+    public function getName(): ? string;
37 37
 
38 38
     /**
39 39
      * @param string $name
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     /**
46 46
      * @return string|null
47 47
      */
48
-    public function getDescription(): ?string;
48
+    public function getDescription(): ? string;
49 49
 
50 50
     /**
51 51
      * @param string|null $description
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     /**
58 58
      * @return string|null
59 59
      */
60
-    public function getCredentials(): ?string;
60
+    public function getCredentials(): ? string;
61 61
 
62 62
     /**
63 63
      * @param string $credentials
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
     /**
169 169
      * @return DateTimeInterface|null
170 170
      */
171
-    public function getCreatedAt(): ?DateTimeInterface;
171
+    public function getCreatedAt(): ? DateTimeInterface;
172 172
 
173 173
     /**
174 174
      * @param DateTimeInterface $createdAt
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
     /**
181 181
      * @return DateTimeInterface|null
182 182
      */
183
-    public function getUpdatedAt(): ?DateTimeInterface;
183
+    public function getUpdatedAt(): ? DateTimeInterface;
184 184
 
185 185
     /**
186 186
      * @param DateTimeInterface $createdAt
Please login to merge, or discard this patch.
src/Contracts/Entities/TokenInterface.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     /**
28 28
      * @return int|null
29 29
      */
30
-    public function getIdentifier(): ?int;
30
+    public function getIdentifier(): ? int;
31 31
 
32 32
     /**
33 33
      * @param int $identifier
@@ -65,14 +65,14 @@  discard block
 block discarded – undo
65 65
     /**
66 66
      * @return string|null
67 67
      */
68
-    public function getType(): ?string;
68
+    public function getType(): ? string;
69 69
 
70 70
     /**
71 71
      * @param string|null $uri
72 72
      *
73 73
      * @return TokenInterface
74 74
      */
75
-    public function setRedirectUriString(?string $uri): TokenInterface;
75
+    public function setRedirectUriString(? string $uri) : TokenInterface;
76 76
 
77 77
     /**
78 78
      * @return TokenInterface
@@ -104,33 +104,33 @@  discard block
 block discarded – undo
104 104
      *
105 105
      * @return TokenInterface
106 106
      */
107
-    public function setCode(?string $code): TokenInterface;
107
+    public function setCode(? string $code) : TokenInterface;
108 108
 
109 109
     /**
110 110
      * @param string|null $value
111 111
      *
112 112
      * @return TokenInterface
113 113
      */
114
-    public function setValue(?string $value): TokenInterface;
114
+    public function setValue(? string $value) : TokenInterface;
115 115
 
116 116
     /**
117 117
      * @param string|null $type
118 118
      *
119 119
      * @return TokenInterface
120 120
      */
121
-    public function setType(?string $type): TokenInterface;
121
+    public function setType(? string $type) : TokenInterface;
122 122
 
123 123
     /**
124 124
      * @param string|null $refreshValue
125 125
      *
126 126
      * @return TokenInterface
127 127
      */
128
-    public function setRefreshValue(?string $refreshValue): TokenInterface;
128
+    public function setRefreshValue(? string $refreshValue) : TokenInterface;
129 129
 
130 130
     /**
131 131
      * @return DateTimeInterface|null
132 132
      */
133
-    public function getCodeCreatedAt(): ?DateTimeInterface;
133
+    public function getCodeCreatedAt(): ? DateTimeInterface;
134 134
 
135 135
     /**
136 136
      * @param DateTimeInterface $codeCreatedAt
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
     /**
143 143
      * @return DateTimeInterface|null
144 144
      */
145
-    public function getValueCreatedAt(): ?DateTimeInterface;
145
+    public function getValueCreatedAt(): ? DateTimeInterface;
146 146
 
147 147
     /**
148 148
      * @param DateTimeInterface $valueCreatedAt
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
     /**
155 155
      * @return DateTimeInterface|null
156 156
      */
157
-    public function getRefreshCreatedAt(): ?DateTimeInterface;
157
+    public function getRefreshCreatedAt(): ? DateTimeInterface;
158 158
 
159 159
     /**
160 160
      * @param DateTimeInterface $refreshCreatedAt
Please login to merge, or discard this patch.
src/Contracts/Entities/RedirectUriInterface.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     /**
28 28
      * @return int|null
29 29
      */
30
-    public function getIdentifier(): ?int;
30
+    public function getIdentifier(): ? int;
31 31
 
32 32
     /**
33 33
      * @param int $identifier
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     /**
40 40
      * @return string|null
41 41
      */
42
-    public function getClientIdentifier(): ?string;
42
+    public function getClientIdentifier(): ? string;
43 43
 
44 44
     /**
45 45
      * @param string $identifier
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     /**
57 57
      * @return string|null
58 58
      */
59
-    public function getValue(): ?string;
59
+    public function getValue(): ? string;
60 60
 
61 61
     /**
62 62
      * @param string $uri
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     /**
69 69
      * @return DateTimeInterface|null
70 70
      */
71
-    public function getCreatedAt(): ?DateTimeInterface;
71
+    public function getCreatedAt(): ? DateTimeInterface;
72 72
 
73 73
     /**
74 74
      * @param DateTimeInterface $createdAt
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
     /**
81 81
      * @return DateTimeInterface|null
82 82
      */
83
-    public function getUpdatedAt(): ?DateTimeInterface;
83
+    public function getUpdatedAt(): ? DateTimeInterface;
84 84
 
85 85
     /**
86 86
      * @param DateTimeInterface $createdAt
Please login to merge, or discard this patch.
src/Contracts/Entities/DatabaseSchemeInterface.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -316,17 +316,17 @@  discard block
 block discarded – undo
316 316
     /**
317 317
      * @return string|null
318 318
      */
319
-    public function getUsersView(): ?string;
319
+    public function getUsersView(): ? string;
320 320
 
321 321
     /**
322 322
      * @return string|null
323 323
      */
324
-    public function getUsersTable(): ?string;
324
+    public function getUsersTable(): ? string;
325 325
 
326 326
     /**
327 327
      * @return string|null
328 328
      */
329
-    public function getUsersIdentityColumn(): ?string;
329
+    public function getUsersIdentityColumn(): ? string;
330 330
 
331 331
     /**************************************************************************
332 332
      * Passport view.
@@ -335,5 +335,5 @@  discard block
 block discarded – undo
335 335
     /**
336 336
      * @return string|null
337 337
      */
338
-    public function getPassportView(): ?string;
338
+    public function getPassportView(): ? string;
339 339
 }
Please login to merge, or discard this patch.
src/Contracts/Entities/ScopeInterface.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
     /**
27 27
      * @return string|null
28 28
      */
29
-    public function getIdentifier(): ?string;
29
+    public function getIdentifier(): ? string;
30 30
 
31 31
     /**
32 32
      * @param string $identifier
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
     /**
39 39
      * @return string|null
40 40
      */
41
-    public function getDescription(): ?string;
41
+    public function getDescription(): ? string;
42 42
 
43 43
     /**
44 44
      * @param string|null $description
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     /**
51 51
      * @return DateTimeInterface|null
52 52
      */
53
-    public function getCreatedAt(): ?DateTimeInterface;
53
+    public function getCreatedAt(): ? DateTimeInterface;
54 54
 
55 55
     /**
56 56
      * @param DateTimeInterface $createdAt
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     /**
63 63
      * @return DateTimeInterface|null
64 64
      */
65
-    public function getUpdatedAt(): ?DateTimeInterface;
65
+    public function getUpdatedAt(): ? DateTimeInterface;
66 66
 
67 67
     /**
68 68
      * @param DateTimeInterface $createdAt
Please login to merge, or discard this patch.
src/Contracts/Repositories/ClientRepositoryInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
      *
73 73
      * @return ClientInterface|null
74 74
      */
75
-    public function read(string $identifier): ?ClientInterface;
75
+    public function read(string $identifier): ? ClientInterface;
76 76
 
77 77
     /**
78 78
      * @param string $identifier
Please login to merge, or discard this patch.
src/Contracts/Repositories/TokenRepositoryInterface.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
      *
83 83
      * @return TokenInterface|null
84 84
      */
85
-    public function read(int $identifier): ?TokenInterface;
85
+    public function read(int $identifier): ? TokenInterface;
86 86
 
87 87
     /**
88 88
      * @param string $code
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
      *
91 91
      * @return TokenInterface|null
92 92
      */
93
-    public function readByCode(string $code, int $expirationInSeconds): ?TokenInterface;
93
+    public function readByCode(string $code, int $expirationInSeconds): ? TokenInterface;
94 94
 
95 95
     /**
96 96
      * @param string $tokenValue
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
      *
99 99
      * @return TokenInterface|null
100 100
      */
101
-    public function readByValue(string $tokenValue, int $expirationInSeconds): ?TokenInterface;
101
+    public function readByValue(string $tokenValue, int $expirationInSeconds): ? TokenInterface;
102 102
 
103 103
     /**
104 104
      * @param string $refreshValue
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
      *
107 107
      * @return TokenInterface|null
108 108
      */
109
-    public function readByRefresh(string $refreshValue, int $expirationInSeconds): ?TokenInterface;
109
+    public function readByRefresh(string $refreshValue, int $expirationInSeconds): ? TokenInterface;
110 110
 
111 111
     /**
112 112
      * @param int      $userId
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
      *
131 131
      * @return array|null
132 132
      */
133
-    public function readPassport(string $tokenValue, int $expirationInSeconds): ?array;
133
+    public function readPassport(string $tokenValue, int $expirationInSeconds): ? array;
134 134
 
135 135
     /**
136 136
      * @param TokenInterface $token
Please login to merge, or discard this patch.
src/Contracts/PassportServerIntegrationInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
      *
69 69
      * @return array|null
70 70
      */
71
-    public function verifyAllowedUserScope(int $userIdentity, array $scope = null): ?array;
71
+    public function verifyAllowedUserScope(int $userIdentity, array $scope = null): ? array;
72 72
 
73 73
     /**
74 74
      * @param TokenInterface $token
Please login to merge, or discard this patch.
src/Contracts/Authentication/PassportAccountManagerInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,5 +33,5 @@
 block discarded – undo
33 33
     /**
34 34
      * @return PassportAccountInterface|null
35 35
      */
36
-    public function getPassport(): ?PassportAccountInterface;
36
+    public function getPassport(): ? PassportAccountInterface;
37 37
 }
Please login to merge, or discard this patch.