Skip to content

Commit

Permalink
style(*): lowercase TRUE, FALSE and NULL
Browse files Browse the repository at this point in the history
  • Loading branch information
Tinsh committed Dec 23, 2018
1 parent ec1e7fd commit ed1d7e4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions system/config/credit_cards.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,41 +13,41 @@
'default' => [
'length' => '13,14,15,16,17,18,19',
'prefix' => '',
'luhn' => TRUE,
'luhn' => true,
],
'american express' => [
'length' => '15',
'prefix' => '3[47]',
'luhn' => TRUE,
'luhn' => true,
],
'diners club' => [
'length' => '14,16',
'prefix' => '36|55|30[0-5]',
'luhn' => TRUE,
'luhn' => true,
],
'discover' => [
'length' => '16',
'prefix' => '6(?:5|011)',
'luhn' => TRUE,
'luhn' => true,
],
'jcb' => [
'length' => '15,16',
'prefix' => '3|1800|2131',
'luhn' => TRUE,
'luhn' => true,
],
'maestro' => [
'length' => '16,18',
'prefix' => '50(?:20|38)|6(?:304|759)',
'luhn' => TRUE,
'luhn' => true,
],
'mastercard' => [
'length' => '16',
'prefix' => '5[1-5]',
'luhn' => TRUE,
'luhn' => true,
],
'visa' => [
'length' => '13,16',
'prefix' => '4',
'luhn' => TRUE,
'luhn' => true,
],
];
2 changes: 1 addition & 1 deletion system/config/curl.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
CURLOPT_USERAGENT => 'Mozilla/5.0 (compatible; Kohana v' . Kohana::VERSION . ' +http://kohanaframework.org/)',
CURLOPT_CONNECTTIMEOUT => 5,
CURLOPT_TIMEOUT => 5,
CURLOPT_HEADER => FALSE,
CURLOPT_HEADER => false,
];
2 changes: 1 addition & 1 deletion system/config/session.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

return [
'cookie' => [
'encrypted' => FALSE,
'encrypted' => false,
],
];
2 changes: 1 addition & 1 deletion system/config/userguide.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// This should be the path to this modules userguide pages, without the 'guide/'. Ex: '/guide/modulename/' would be 'modulename'
'kohana' => [
// Whether this modules userguide pages should be shown
'enabled' => TRUE,
'enabled' => true,
// The name that should show up on the userguide index page
'name' => 'Kohana',
// A short description of this module, shown on the index page
Expand Down

0 comments on commit ed1d7e4

Please sign in to comment.