Skip to content

Commit 040a016

Browse files
committed
fixed array declaration to old synax
1 parent 2bd04f8 commit 040a016

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Message/AbstractRequest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,13 +154,13 @@ public function setCancelMethod($value)
154154
/**
155155
* Redirect method conversion table.
156156
*/
157-
private static $methodsTable = [
157+
private static $methodsTable = array(
158158
'1' => '1',
159159
'2' => '2',
160160
'GET' => '0',
161161
'POST' => '1',
162162
'LINK' => '2',
163-
];
163+
);
164164

165165
/**
166166
* Converts redirect method to WebMoney code: 0, 1 or 2.

0 commit comments

Comments
 (0)