woocommerce-multilingual
/
vendor
/
otgs
/
installer
/
src
/
Recommendations
/
RecommendationsForInstallerPlugins.php
GluePluginData.php
1 month ago
RecommendationsForInstallerPlugins.php
1 month ago
RecommendationsManager.php
1 month ago
Storage.php
1 month ago
RecommendationsForInstallerPlugins.php
23 lines
| 1 | <?php |
| 2 | |
| 3 | namespace OTGS\Installer\Recommendations; |
| 4 | class RecommendationsForInstallerPlugins { |
| 5 | |
| 6 | private $pluginsRecommendations; |
| 7 | |
| 8 | private $pluginsData; |
| 9 | |
| 10 | public function __construct( $pluginsRecommendations, $pluginsData ) { |
| 11 | $this->pluginsRecommendations = $pluginsRecommendations; |
| 12 | $this->pluginsData = $pluginsData; |
| 13 | } |
| 14 | |
| 15 | public function getRecommendations() { |
| 16 | return $this->pluginsRecommendations; |
| 17 | } |
| 18 | |
| 19 | public function getPluginsData() { |
| 20 | return $this->pluginsData; |
| 21 | } |
| 22 | } |
| 23 |