Completed
Push — master ( 525893...7edc6a )
by Damien
10:39
created
src/controllers/cp/view/AbstractController.php 2 patches
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -124,7 +124,6 @@  discard block
 block discarded – undo
124 124
 
125 125
     /**
126 126
      * @param ProviderInterface $provider
127
-     * @param array $variables
128 127
      * @return array
129 128
      */
130 129
     protected function addUrls(ProviderInterface $provider)
@@ -196,7 +195,7 @@  discard block
 block discarded – undo
196 195
     }
197 196
 
198 197
     /**
199
-     * @param $endpoints
198
+     * @param EndpointType[] $endpoints
200 199
      * @return EndpointType|null
201 200
      */
202 201
     protected function getFirstEndpoint($endpoints)
Please login to merge, or discard this patch.
Unused Use Statements   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -8,16 +8,16 @@
 block discarded – undo
8 8
 
9 9
 namespace flipbox\saml\core\controllers\cp\view;
10 10
 
11
+use SAML2\XML\md\EndpointType;
12
+use SAML2\XML\md\IDPSSODescriptor;
13
+use SAML2\XML\md\IndexedEndpointType;
14
+use SAML2\XML\md\SPSSODescriptor;
11 15
 use flipbox\saml\core\AbstractPlugin;
12
-use flipbox\saml\core\controllers\AbstractController as BaseController;
13 16
 use flipbox\saml\core\EnsureSAMLPlugin;
17
+use flipbox\saml\core\controllers\AbstractController as BaseController;
14 18
 use flipbox\saml\core\models\AbstractSettings;
15 19
 use flipbox\saml\core\records\ProviderInterface;
16 20
 use flipbox\saml\core\web\assets\bundles\SamlCore;
17
-use SAML2\XML\md\EndpointType;
18
-use SAML2\XML\md\IDPSSODescriptor;
19
-use SAML2\XML\md\IndexedEndpointType;
20
-use SAML2\XML\md\SPSSODescriptor;
21 21
 
22 22
 /**
23 23
  * Class AbstractController
Please login to merge, or discard this patch.