Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .jeeves.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ Mygento:
payment_url:
type: varchar
nullable: false
length: 512
comment: 'Payment Url'
try:
type: int
Expand Down
4 changes: 2 additions & 2 deletions Gateway/Http/Client/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ public function __construct(

/**
* @param \Magento\Payment\Gateway\Http\TransferInterface $transferObject
* @return null
* @return array
*
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function placeRequest(\Magento\Payment\Gateway\Http\TransferInterface $transferObject)
{
return null;
return [];
}

/**
Expand Down
2 changes: 1 addition & 1 deletion etc/db_schema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<column xsi:type="varchar" name="code" nullable="false" length="255" comment="Module CodeName"/>
<column xsi:type="int" name="order_id" nullable="false" identity="false" unsigned="true" comment="Order ID"/>
<column xsi:type="varchar" name="payment_id" nullable="false" length="255" comment="Payment ID"/>
<column xsi:type="varchar" name="payment_url" nullable="false" length="255" comment="Payment Url"/>
<column xsi:type="varchar" name="payment_url" nullable="false" length="512" comment="Payment Url"/>
<column xsi:type="int" name="try" nullable="false" identity="false" unsigned="true" default="0" comment="Try"/>
<column xsi:type="varchar" name="payment_type" nullable="false" length="255" comment="Payment Type"/>
<column xsi:type="timestamp" name="created_at" nullable="false" default="CURRENT_TIMESTAMP" on_update="false" comment="Created At"/>
Expand Down
1 change: 0 additions & 1 deletion grumphp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,5 @@ grumphp:
warning_severity: 0
xmllint:
phpstan:
autoload_file: 'vendor/mygento/coding-standard/stan/autoload.php'
ignore_patterns: ['Test']
level: 1
Loading