Skip to content

Commit

Permalink
removing dup functions after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
weaverryan committed Feb 27, 2018
1 parent a34a1a2 commit 4afbc0e
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/Str.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,16 +133,6 @@ public static function asFilePath(string $value): string
return $value;
}

public static function getShortClassName(string $fullClassName): string
{
return substr($fullClassName, strrpos($fullClassName, '\\') + 1);
}

public static function getNamespace(string $fullClassName): string
{
return substr($fullClassName, 0, strrpos($fullClassName, '\\'));
}

public static function singularCamelCaseToPluralCamelCase(string $camelCase): string
{
$snake = self::asSnakeCase($camelCase);
Expand Down

0 comments on commit 4afbc0e

Please sign in to comment.