Renamed method to a more speaking name

This commit is contained in:
Kevin Frantz
2019-02-06 18:38:20 +01:00
parent d3379630c8
commit f85b0118a7
5 changed files with 7 additions and 6 deletions

View File

@@ -83,7 +83,7 @@ final class ActionService implements ActionServiceInterface
/**
* @return FormBuilderInterface
*/
public function getForm(): FormBuilderInterface
public function getCurrentFormBuilder(): FormBuilderInterface
{
return $this->requestedActionFormBuilderService->createByService();
}

View File

@@ -38,7 +38,7 @@ interface ActionServiceInterface
/**
* @return FormBuilderInterface
*/
public function getForm(): FormBuilderInterface;
public function getCurrentFormBuilder(): FormBuilderInterface;
/**
* @return EntityManagerInterface

View File

@@ -21,7 +21,8 @@ class RequestedActionFormBuilder implements RequestedActionFormBuilderInterface
private $formClassNameService;
/**
* @param FormBuilderInterface $formBuilder
* @param FormBuilderInterface $formBuilder
* @param FormClassNameServiceInterface $formClassNameService
*/
public function __construct(FormBuilderInterface $formBuilder, FormClassNameServiceInterface $formClassNameService)
{

View File

@@ -48,7 +48,7 @@ final class RightTransformerService implements RightTransformerServiceInterface
$attributes = [];
$reflection = new \ReflectionClass($right);
$methods = $reflection->getMethods(\ReflectionMethod::IS_PUBLIC);
/**
/*
* @var \ReflectionMethod
*/
foreach ($methods as $method) {