Skip to content

Commit 5c8c081

Browse files
author
Igor Alekseenko
committed
fix version
fix version fix version fix version fix version
1 parent 3a5b31f commit 5c8c081

File tree

7 files changed

+6
-8
lines changed

7 files changed

+6
-8
lines changed

Api/TokenBalanceRepositoryInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public function getByCustomerId(int $customerId): TokenBalanceInterface;
4343
public function getByCustomerIdOrEmail(?string $customerId, ?string $customerEmail): ?TokenBalanceInterface;
4444

4545
/**
46-
* Save city landing
46+
* Save token balance entity
4747
*
4848
* @param TokenBalanceInterface $tokenBalance
4949
* @return TokenBalanceInterface

Api/TokenHistoryRepositoryInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function getById(int $tokenHistoryId): TokenBalanceHistoryInterface;
3030
public function getByTokenBalanceId(int $tokenBalanceId): TokenBalanceHistoryInterface;
3131

3232
/**
33-
* Save city landing
33+
* Save token history entity
3434
*
3535
* @param TokenBalanceHistoryInterface $tokenHistory
3636
* @return TokenBalanceHistoryInterface

Api/TokenOrderRepositoryInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function getByTokenBalanceId(int $tokenBalanceId): TokenOrderInterface;
3737
public function getByIncrementId(string $incrementId): TokenOrderInterface;
3838

3939
/**
40-
* Save city landing
40+
* Save token order entity
4141
*
4242
* @param TokenOrderInterface $tokenOrder
4343
* @return TokenOrderInterface

Api/WithdrawRequestRepositoryInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ interface WithdrawRequestRepositoryInterface
2323
public function getById(int $requestId): WithdrawRequestInterface;
2424

2525
/**
26-
* Save city landing
26+
* Save withdtaw request entity
2727
*
2828
* @param WithdrawRequestInterface $withdrawRequest
2929
* @return WithdrawRequestInterface

Controller/Adminhtml/Tokenbalance/Index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function execute()
2222
/** @var Page $resultPage */
2323
$resultPage = $this->resultFactory->create($this->resultFactory::TYPE_PAGE);
2424

25-
$resultPage->setActiveMenu('BigBusTours::citylanding');
25+
$resultPage->setActiveMenu('Crypto_MagentoToken::token');
2626
$resultPage->getConfig()->getTitle()->prepend((string) __('Token Balances'));
2727

2828
return $resultPage;

Helper/Config.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77

88
namespace Crypto\MagentoToken\Helper;
99

10-
use Crypto\MagentoToken\Api\Data\CityLandingSearchResultsInterface;
11-
use Crypto\MagentoToken\Model\CityLandingRepository;
1210
use Magento\Framework\App\Config\ScopeConfigInterface;
1311
use Magento\Store\Model\ScopeInterface;
1412
use Magento\Store\Model\StoreManagerInterface;

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
}
1212
],
1313
"require": {
14-
"cryptom2/base": "^1.0.0"
14+
"cryptom2/base": "~1.0.1"
1515
},
1616
"license": "MIT",
1717
"autoload": {

0 commit comments

Comments
 (0)