Skip to content

Commit

Permalink
OXDEV-7785 Remove bootstrap parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
AshrafOxid committed May 28, 2024
1 parent 5a64c6a commit 057a95f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 46 deletions.
40 changes: 0 additions & 40 deletions CHANGELOG-7.x.md

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG-8.x.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Change Log for OXID eSales Composer Plugin

## v8.0.0 - unreleased

### Removed
- Configuration parameters sShopDir and sCompileDir from the configuration file
2 changes: 0 additions & 2 deletions src/Installer/Package/ShopPackageInstaller.php
Original file line number Diff line number Diff line change
Expand Up @@ -232,8 +232,6 @@ private function isConfigFileNotConfiguredOrMissing($shopConfigFileName)
'<dbUser>',
'<dbPwd>',
'<sShopURL>',
'<sShopDir>',
'<sCompileDir>',
];

foreach ($wordsIndicatingNotConfigured as $word) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,6 @@ protected static function getNonConfiguredConfigFileContents(): string
$this->dbUser = '<dbUser>';
$this->dbPwd = '<dbPwd>';
$this->sShopURL = '<sShopURL>';
$this->sShopDir = '<sShopDir>';
$this->sCompileDir = '<sCompileDir>';
EOT;
}

Expand All @@ -148,8 +146,6 @@ protected function getConfiguredConfigFileContents(): string
$this->dbUser = 'test_user';
$this->dbPwd = 'test_password';
$this->sShopURL = 'http://test.url/';
$this->sShopDir = '/var/www/test/dir';
$this->sCompileDir = '/var/www/test/dir/tmp';
EOT;
}
}

0 comments on commit 057a95f

Please sign in to comment.