AdminCrudBundle icon indicating copy to clipboard operation
AdminCrudBundle copied to clipboard

[Insight] Missing use statement should be avoided - in Controller/BackendController.php, line 60

Open gonzaloalonsod opened this issue 9 years ago • 0 comments

in Controller/BackendController.php, line 60

The Exception class resolves to the following classes: Imagine\Exception\Exception or Symfony\Component\Config\Definition\Exception\Exception or Ivory\CKEditorBundle\Exception\Exception. Did you forget to add a corresponding use statement for one of them?

                    }

                    $em->flush();

                    $res = true;
                } catch (Exception $e) {
                    $res = false;
                }
            } else {
                $res = false;
            }

Posted from SensioLabsInsight

gonzaloalonsod avatar Oct 20 '16 16:10 gonzaloalonsod