Completed
Push — master ( 7bb5f9...d11323 )
by Greg
08:31
created
src/Cli/HubphCommands.php 1 patch
Doc Comments   +12 added lines, -6 removed lines patch added patch discarded remove patch
@@ -193,6 +193,9 @@  discard block
 block discarded – undo
193 193
         return $this->getProjectWithOrfFromUrl($remote);
194 194
     }
195 195
 
196
+    /**
197
+     * @param string $remote
198
+     */
196 199
     protected function getProjectWithOrfFromUrl($remote)
197 200
     {
198 201
         $remote = preg_replace('#^git@[^:]*:#', '', $remote);
@@ -250,7 +253,7 @@  discard block
 block discarded – undo
250 253
      *   _links: Links
251 254
      * @default-fields number,user,title
252 255
      * @default-string-field number
253
-     * @return Consolidation\OutputFormatters\StructuredData\RowsOfFields
256
+     * @return RowsOfFields
254 257
     */
255 258
     public function prFind($projectWithOrg = '', $options = ['as' => 'default', 'format' => 'yaml', 'q' => ''])
256 259
     {
@@ -310,7 +313,7 @@  discard block
 block discarded – undo
310 313
      * @default-fields full_name,language,default_branch
311 314
      * @default-string-field full_name
312 315
      *
313
-     * @return Consolidation\OutputFormatters\StructuredData\RowsOfFields
316
+     * @return RowsOfFields
314 317
      */
315 318
     public function orgRepos($org, $options = ['as' => 'default', 'format' => 'table'])
316 319
     {
@@ -361,7 +364,7 @@  discard block
 block discarded – undo
361 364
      *   license: License
362 365
      *   permissions: Permissions
363 366
      *
364
-     * @return Consolidation\OutputFormatters\StructuredData\PropertyList
367
+     * @return PropertyList
365 368
      */
366 369
     public function repoInfo($projectWithOrg, $options = ['as' => 'default', 'format' => 'table'])
367 370
     {
@@ -415,7 +418,7 @@  discard block
 block discarded – undo
415 418
      *   head: Head
416 419
      *   base: Base
417 420
      *   _links: Links
418
-     * @return Consolidation\OutputFormatters\StructuredData\PropertyList
421
+     * @return PropertyList
419 422
      */
420 423
     public function prShow($projectWithOrg = '', $number = '', $options = ['as' => 'default', 'format' => 'table'])
421 424
     {
@@ -452,7 +455,7 @@  discard block
 block discarded – undo
452 455
      *   updated_at: Updated
453 456
      * @default-fields id,creator,state,description
454 457
      * @default-string-field description
455
-     * @return Consolidation\OutputFormatters\StructuredData\RowsOfFields
458
+     * @return RowsOfFields
456 459
      */
457 460
     public function prStatuses($projectWithOrg = '', $number = '', $options = ['as' => 'default', 'format' => 'yaml'])
458 461
     {
@@ -510,7 +513,7 @@  discard block
 block discarded – undo
510 513
      *   _links: Links
511 514
      * @default-fields number,user,title
512 515
      * @default-string-field number
513
-     * @return Consolidation\OutputFormatters\StructuredData\RowsOfFields
516
+     * @return RowsOfFields
514 517
      */
515 518
     public function prList($projectWithOrg = '', $options = ['state' => 'open', 'as' => 'default', 'format' => 'table'])
516 519
     {
@@ -561,6 +564,9 @@  discard block
 block discarded – undo
561 564
         );
562 565
     }
563 566
 
567
+    /**
568
+     * @param string $field
569
+     */
564 570
     protected function keyById($data, $field)
565 571
     {
566 572
         return
Please login to merge, or discard this patch.