Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make entity, related class without namespace #150

Merged
merged 1 commit into from
Apr 11, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/Str.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,11 @@ public static function asEventMethod(string $eventName): string

public static function getShortClassName(string $fullClassName): string
{
return substr($fullClassName, strrpos($fullClassName, '\\') + 1);
if (!empty(self::getNamespace($fullClassName))) {
return substr($fullClassName, strrpos($fullClassName, '\\') + 1);
} else {
return $fullClassName;
}
}

public static function getNamespace(string $fullClassName): string
Expand Down
14 changes: 14 additions & 0 deletions tests/StrTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,18 @@ public function getAsCamelCaseTests()

yield ['foo_bar.baz\\pizza', 'FooBarBazPizza'];
}

/**
* @dataProvider getShortClassNameCaseTests
*/
public function testShortClassName(string $original, string $expected)
{
$this->assertSame($expected, Str::getShortClassName($original));
}

public function getShortClassNameCaseTests()
{
yield ['App\\Entity\\Foo', 'Foo'];
yield ['Foo', 'Foo'];
}
}