This commit is contained in:
Fabien Potencier 2019-04-06 20:58:31 +02:00
parent 5c0acfb649
commit 05e488f418
3 changed files with 5 additions and 4 deletions

View File

@ -370,7 +370,7 @@ class ProfilerController
return $this->templateManager;
}
private function denyAccessIfProfilerDisabled()
{
if (null === $this->profiler) {

View File

@ -113,11 +113,11 @@ interface FormInterface extends \ArrayAccess, \Traversable, \Countable
* @return $this
*
* @throws Exception\AlreadySubmittedException If the form has already been submitted
* @throws Exception\LogicException If the view data does not match the expected type
* according to {@link FormConfigInterface::getDataClass}.
* @throws Exception\LogicException if the view data does not match the expected type
* according to {@link FormConfigInterface::getDataClass}
* @throws Exception\RuntimeException If listeners try to call setData in a cycle or if
* the form inherits data from its parent
* @throws Exception\TransformationFailedException If the synchronization failed.
* @throws Exception\TransformationFailedException if the synchronization failed
*/
public function setData($modelData);

View File

@ -23,6 +23,7 @@ use Symfony\Component\Ldap\Exception\NotBoundException;
* @author Kevin Schuurmans <kevin.schuurmans@freshheads.com>
*
* The move() methods must be added to the interface in Symfony 5.0
*
* @method void move(Entry $entry, string $newParent) Moves an entry on the Ldap server
*/
interface EntryManagerInterface