Skip to content

Commit

Permalink
Fix bug with katakana converter.
Browse files Browse the repository at this point in the history
  • Loading branch information
zachleigh committed Apr 30, 2016
1 parent c1a8d43 commit 78e98b3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Classes/Collection.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ abstract class Collection implements ArrayAccess, JsonSerializable, IteratorAggr
use Arr;

/**
* Collection methods adopted from Laravel Collection.
* Collection methods adapted from Laravel Collection.
* https://github.com/illuminate/support/blob/master/Collection.php.
*/

Expand Down
2 changes: 1 addition & 1 deletion src/Helpers/Arr.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
trait Arr
{
/**
* Methods in this trait adopted from Laravel Arr class.
* Methods in this trait adapted from Laravel Arr class.
* https://github.com/illuminate/support/blob/master/Arr.php
*/

Expand Down
2 changes: 1 addition & 1 deletion src/Helpers/Converter.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public static function convert($items, $format)
*
* @return string
*/
private function katakana($value)
private static function katakana($value)
{
return static::convertKana($value, 'C');
}
Expand Down

0 comments on commit 78e98b3

Please sign in to comment.