Failed Conditions
Push — master ( 9635a1...82855d )
by Florent
14:04
created
src/Bundle/Server/DependencyInjection/OAuth2FrameworkServerExtension.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
 
83 83
     /**
84 84
      * @param string           $path
85
-     * @param array            $sources
85
+     * @param SourceInterface[]            $sources
86 86
      * @param array            $mergedConfig
87 87
      * @param ContainerBuilder $container
88 88
      */
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
     /**
101 101
      * @param array            $bundleConfig
102 102
      * @param string           $path
103
-     * @param array            $sources
103
+     * @param SourceInterface[]            $sources
104 104
      * @param ContainerBuilder $container
105 105
      */
106 106
     private function prependSources(array $bundleConfig, string $path, array $sources, ContainerBuilder $container)
Please login to merge, or discard this patch.
src/Bundle/Server/Form/FormFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
 
60 60
     /**
61 61
      * @param array      $options
62
-     * @param mixed|null $data
62
+     * @param Model\AuthorizationModel $data
63 63
      *
64 64
      * @return FormInterface
65 65
      */
Please login to merge, or discard this patch.
src/Component/Server/Tests/Stub/AuthCodeRepository.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
      * @param string                  $redirectUri
203 203
      * @param DataBag                 $parameters
204 204
      * @param DataBag                 $metadatas
205
-     * @param array                   $scopes
205
+     * @param string[]                   $scopes
206 206
      * @param \DateTimeImmutable|null $expiresAt
207 207
      * @param bool                    $withRefreshToken
208 208
      * @param ResourceServerId|null   $resourceServerId
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
      * @param string                  $redirectUri
240 240
      * @param DataBag                 $parameters
241 241
      * @param DataBag                 $metadatas
242
-     * @param array                   $scopes
242
+     * @param string[]                   $scopes
243 243
      * @param \DateTimeImmutable|null $expiresAt
244 244
      * @param bool                    $withRefreshToken
245 245
      * @param ResourceServerId|null   $resourceServerId
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
      * @param string                  $redirectUri
278 278
      * @param DataBag                 $parameters
279 279
      * @param DataBag                 $metadatas
280
-     * @param array                   $scopes
280
+     * @param string[]                   $scopes
281 281
      * @param \DateTimeImmutable|null $expiresAt
282 282
      * @param bool                    $withRefreshToken
283 283
      * @param ResourceServerId|null   $resourceServerId
Please login to merge, or discard this patch.
src/Component/Server/Tests/Stub/PreConfiguredAuthorizationRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@
 block discarded – undo
122 122
      * @param PreConfiguredAuthorizationId $preConfiguredAuthorizationId
123 123
      * @param UserAccountId                $userAccountId
124 124
      * @param ClientId                     $clientId
125
-     * @param array                        $scopes
125
+     * @param string[]                        $scopes
126 126
      */
127 127
     private function createAndSavePreConfiguredAuthorization(PreConfiguredAuthorizationId $preConfiguredAuthorizationId, UserAccountId $userAccountId, ClientId $clientId, array $scopes)
128 128
     {
Please login to merge, or discard this patch.
src/Component/Server/Tests/Stub/ScopeRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     /**
42 42
      * ScopeManager constructor.
43 43
      *
44
-     * @param array $availableScopes
44
+     * @param string[] $availableScopes
45 45
      */
46 46
     public function __construct(array $availableScopes = [])
47 47
     {
Please login to merge, or discard this patch.