13 lines
No EOL
246 B
PHP
13 lines
No EOL
246 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
class PaymentHelper
|
|
{
|
|
public static $txaction_art = [
|
|
'user_order' => "Vertriebspartner",
|
|
'customer_order' => "Kundenbestellung",
|
|
'user_for_customer' => "VP.Kundenbestellung",
|
|
];
|
|
|
|
}
|