simple fixes
This commit is contained in:
parent
90efaeec42
commit
3dc2a68583
@ -75,10 +75,10 @@ class <className> extends <repositoryName>
|
|||||||
*
|
*
|
||||||
* @return string $namespace
|
* @return string $namespace
|
||||||
*/
|
*/
|
||||||
protected function generateEntityRepositoryNamespace($fullClassName)
|
private function generateEntityRepositoryNamespace($fullClassName)
|
||||||
{
|
{
|
||||||
$namespace = substr($fullClassName, 0, strrpos($fullClassName, '\\'));
|
$namespace = substr($fullClassName, 0, strrpos($fullClassName, '\\'));
|
||||||
|
|
||||||
return $namespace ? 'namespace ' . $namespace . ';' : '';
|
return $namespace ? 'namespace ' . $namespace . ';' : '';
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -87,7 +87,7 @@ class <className> extends <repositoryName>
|
|||||||
*/
|
*/
|
||||||
protected function generateEntityRepositoryName()
|
protected function generateEntityRepositoryName()
|
||||||
{
|
{
|
||||||
$repositoryName = $this->getDefaultRepositoryName();
|
$repositoryName = $this->_repositoryName;
|
||||||
|
|
||||||
if (substr($repositoryName, 0, 1) != '\\') {
|
if (substr($repositoryName, 0, 1) != '\\') {
|
||||||
$repositoryName = '\\' . $repositoryName;
|
$repositoryName = '\\' . $repositoryName;
|
||||||
@ -130,12 +130,4 @@ class <className> extends <repositoryName>
|
|||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getDefaultRepositoryName()
|
|
||||||
{
|
|
||||||
return $this->_repositoryName;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user