Skip to content

Commit

Permalink
Fix code lint issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
kporras07 committed Nov 21, 2024
1 parent 2705f38 commit 6a3c244
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Commands/Local/CloneCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,10 @@ class CloneCommand extends TerminusCommand implements SiteAwareInterface, Config
*
* @usage <site> Clone's a local copy into "$HOME/pantheon-local-copies"
*/
public function clone(string $site_id, array $options = ['site_dir' => null, 'override' => null, 'branch' => 'master']): string
{
public function clone(
string $site_id,
array $options = ['site_dir' => null, 'override' => null, 'branch' => 'master']
): string {
$site = $this->getSiteById($site_id);
$env = $site->getEnvironments()->get('dev');

Expand Down

0 comments on commit 6a3c244

Please sign in to comment.