We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87e87dd commit aeceb8cCopy full SHA for aeceb8c
2 files changed
.gitignore
@@ -23,3 +23,6 @@ clover.xml
23
24
# Ignore PHPUnit cache file
25
.phpunit.result.cache
26
+
27
+# Ignore PHP-CS-Fixer cache file
28
+.php-cs-fixer.cache
lib/Util/Util.php
@@ -8,11 +8,11 @@ abstract class Util
8
{
9
// todo wanna use 'private const' (only PHP >= v7.1.0)
10
private static $types = array(
11
+ 'account' => \Payjp\Account::class,
12
'application_url' => \Payjp\ApplicationUrl::class,
13
'balance' => \Payjp\Balance::class,
14
'card' => \Payjp\Card::class,
15
'charge' => \Payjp\Charge::class,
- 'account' => \Payjp\Account::class,
16
'customer' => \Payjp\Customer::class,
17
'event' => \Payjp\Event::class,
18
'list' => \Payjp\Collection::class,
0 commit comments