Skip to content
This repository was archived by the owner on Apr 29, 2019. It is now read-only.

Commit 99f982c

Browse files
Fix for Forward Ports batch 27 has issues with CICD builds
1 parent dc4977d commit 99f982c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/code/Magento/NewRelicReporting/Console/Command/DeployMarker.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ class DeployMarker extends Command
1717
/**
1818
* @var DeploymentsFactory
1919
*/
20-
protected $deploymentsFactory;
20+
private $deploymentsFactory;
2121

2222
/**
2323
* @var ServiceShellUser
2424
*/
25-
protected $serviceShellUser;
25+
private $serviceShellUser;
2626

2727
/**
2828
* Initialize dependencies.

app/code/Magento/NewRelicReporting/Model/ServiceShellUser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public function get($userFromArgument = false)
2424
return $userFromArgument;
2525
}
2626

27-
$user = `echo \$USER`;
27+
$user = "echo \$USER";
2828
if ($user) {
2929
return $user;
3030
}

0 commit comments

Comments
 (0)