GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — develop ( 172d62...36ec89 )
by Stuart
05:30
created
php/DataSift/Storyplayer/DefinitionLib/TestEnvironment/GroupDefinition.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
      * what should we use to validate a host adapter that is being added
172 172
      * to one of the hosts in this group?
173 173
      *
174
-     * @return \Storyplayer\TestEnvironments\HostAdapterValidator
174
+     * @return \Storyplayer\SPv3\TestEnvironments\HostAdapterValidator
175 175
      */
176 176
     public function getHostAdapterValidator()
177 177
     {
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
     /**
221 221
      * how should we provision this environment?
222 222
      *
223
-     * @return array<ProvisioningAdapters>
223
+     * @return ProvisioningAdapter[]
224 224
      */
225 225
     public function getProvisioningAdapters()
226 226
     {
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
     /**
266 266
      * what hosts exist in this group?
267 267
      *
268
-     * @return array<TestEnvironment_HostDefinition>
268
+     * @return TestEnvironmentHost[]
269 269
      */
270 270
     public function getHosts()
271 271
     {
Please login to merge, or discard this patch.
php/DataSift/Storyplayer/DefinitionLib/TestEnvironment/HostDefinition.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,6 +74,9 @@  discard block
 block discarded – undo
74 74
      */
75 75
     protected $storySettings;
76 76
 
77
+    /**
78
+     * @param string $hostId
79
+     */
77 80
     public function __construct(TestEnvironment_GroupDefinition $parentGroup, $hostId)
78 81
     {
79 82
         $this->setParentGroup($parentGroup);
@@ -494,7 +497,7 @@  discard block
 block discarded – undo
494 497
     /**
495 498
      * get access to the adapter for the group that we belong to
496 499
      *
497
-     * @return \Storyplayer\TestEnvironments\GroupAdapter
500
+     * @return \Storyplayer\SPv3\TestEnvironments\GroupAdapter
498 501
      */
499 502
     public function getGroupAdapter()
500 503
     {
Please login to merge, or discard this patch.