Skip to content

Commit aeceb8c

Browse files
committed
fix: Fixed the order of Util.php and .gitignore.
1 parent 87e87dd commit aeceb8c

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,6 @@ clover.xml
2323

2424
# Ignore PHPUnit cache file
2525
.phpunit.result.cache
26+
27+
# Ignore PHP-CS-Fixer cache file
28+
.php-cs-fixer.cache

lib/Util/Util.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ abstract class Util
88
{
99
// todo wanna use 'private const' (only PHP >= v7.1.0)
1010
private static $types = array(
11+
'account' => \Payjp\Account::class,
1112
'application_url' => \Payjp\ApplicationUrl::class,
1213
'balance' => \Payjp\Balance::class,
1314
'card' => \Payjp\Card::class,
1415
'charge' => \Payjp\Charge::class,
15-
'account' => \Payjp\Account::class,
1616
'customer' => \Payjp\Customer::class,
1717
'event' => \Payjp\Event::class,
1818
'list' => \Payjp\Collection::class,

0 commit comments

Comments
 (0)