Skip to content

Commit 0c30d0d

Browse files
committed
Case 27689; correcting doc comments
1 parent bb66337 commit 0c30d0d

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

src/Command/Site/Checkout/AbstractCheckoutCommand.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* @file
5-
* Contains \DennisDigital\Drupal\Console\Command\Site\CheckoutCommand.
5+
* Contains \DennisDigital\Drupal\Console\Command\Site\Checkout\AbstractCheckoutCommand.
66
*
77
* Does repo checkouts.
88
*/
@@ -13,9 +13,9 @@
1313
use DennisDigital\Drupal\Console\Command\Site\AbstractCommand;
1414

1515
/**
16-
* Class SiteCheckoutCommand
16+
* Class AbstractCheckoutCommand
1717
*
18-
* @package DennisDigital\Drupal\Console\Command
18+
* @package DennisDigital\Drupal\Console\Command\Site\Checkout
1919
*/
2020
abstract class AbstractCheckoutCommand extends AbstractCommand {
2121
/**

src/Command/Site/Checkout/AbstractRefCommand.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* @file
5-
* Contains \DennisDigital\Drupal\Console\Command\Checkout\AbstractRefCommand.
5+
* Contains \DennisDigital\Drupal\Console\Command\Site\Checkout\AbstractRefCommand.
66
*
77
* Does repo checkouts.
88
*/
@@ -178,14 +178,14 @@ protected function gitClone() {
178178
throw new CommandException($shellProcess->getOutput());
179179
}
180180

181-
// Checkout the tag.
181+
// Checkout the tag/branch.
182182
$this->gitCheckout();
183183

184184
return TRUE;
185185
}
186186

187187
/**
188-
* Helper to check out a tag.
188+
* Helper to check out a tag/branch.
189189
*
190190
* @return bool TRUE If successful.
191191
*

src/Command/Site/Checkout/CheckoutCommand.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* @file
5-
* Contains \DennisDigital\Drupal\Console\Command\Site\CheckoutCommand.
5+
* Contains \DennisDigital\Drupal\Console\Command\Site\Checkout\CheckoutCommand.
66
*
77
* Does repo checkouts.
88
*/
@@ -14,9 +14,9 @@
1414
use Symfony\Component\Console\Output\OutputInterface;
1515

1616
/**
17-
* Class SiteCheckoutCommand
17+
* Class CheckoutCommand
1818
*
19-
* @package DennisDigital\Drupal\Console\Command
19+
* @package DennisDigital\Drupal\Console\Command\Site\Checkout
2020
*/
2121
class CheckoutCommand extends AbstractCheckoutCommand {
2222
/**

0 commit comments

Comments
 (0)