Skip to content

Commit

Permalink
Fix dumb merge issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jokesterfr committed May 23, 2024
1 parent 4592a65 commit 127d973
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<module>
<name>ps_accounts</name>
<displayName><![CDATA[PrestaShop Accounts Mock]]></displayName>
<version><![CDATA[1.0.1]]></version>
<version><![CDATA[1.0.3]]></version>
<description><![CDATA[PS Accounts Mock.]]></description>
<author><![CDATA[PrestaShop]]></author>
<tab><![CDATA[administration]]></tab>
Expand Down
1 change: 1 addition & 0 deletions config/common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ services:

PrestaShop\Module\PsAccounts\Api\Client\AccountsClient:
class: PrestaShop\Module\PsAccounts\Api\Client\AccountsClient
public: true

PrestaShop\Module\PsAccounts\Presenter\PsAccountsPresenter:
class: PrestaShop\Module\PsAccounts\Presenter\PsAccountsPresenter
Expand Down
4 changes: 2 additions & 2 deletions ps_accounts.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Ps_accounts extends Module
/**
* @var string
*/
const VERSION = '1.0.0';
const VERSION = '1.0.3';

/**
* @var \PrestaShop\ModuleLibServiceContainer\DependencyInjection\ServiceContainer
Expand All @@ -19,7 +19,7 @@ class Ps_accounts extends Module
public function __construct()
{
$this->name = 'ps_accounts';
$this->version = '42.0.0';
$this->version = '1.0.3';
$this->author = 'CloudSync team';
$this->need_instance = 0;
$this->ps_versions_compliancy = [
Expand Down
3 changes: 2 additions & 1 deletion src/Api/Client/AccountsClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ class AccountsClient
/**
* ServicesAccountsClient constructor.
*/
public function __construct() {
public function __construct()
{
}

/**
Expand Down

0 comments on commit 127d973

Please sign in to comment.