A symbol used by your project is not imported properly 3

More information: https://insight.symfony.com/what-we-analyse/php.missing_use_statement

  1. ->setEntityPermission('ROLE_ADMIN_PARTNER_COUNTRIES')
  2. ->showEntityActionsInlined()
  3. ;
  4. }
  5. public function configureActions(Actions $actions): Actions

    The Actions type hint resolves to the following class: EasyCorp\Bundle\EasyAdminBundle\Config\Actions.
    Did you forget to add a corresponding use statement?

    Time to fix: about 15 minutes
    Read doc Open Issue Permalink
    Last edited by Olivier Maloteau
  6. {
  7. $actions = parent::configureActions($actions);
  8. $actions->disable(Action::NEW, Action::DELETE);
  9. return $actions;
  1. ->setEntityPermission('ROLE_ADMIN_PARTNER_COUNTRIES')
  2. ->showEntityActionsInlined()
  3. ;
  4. }
  5. public function configureActions(Actions $actions): Actions

    The Actions class resolves to the following class: EasyCorp\Bundle\EasyAdminBundle\Config\Actions.
    Did you forget to add a corresponding use statement?

    Time to fix: about 15 minutes
    Read doc Open Issue Permalink
    Last edited by Olivier Maloteau
  6. {
  7. $actions = parent::configureActions($actions);
  8. $actions->disable(Action::NEW, Action::DELETE);
  9. return $actions;
  1. }
  2. public function configureActions(Actions $actions): Actions
  3. {
  4. $actions = parent::configureActions($actions);
  5. $actions->disable(Action::NEW, Action::DELETE);

    The Action class resolves to the following class: EasyCorp\Bundle\EasyAdminBundle\Config\Action.
    Did you forget to add a corresponding use statement?

    Time to fix: about 15 minutes
    Read doc Open Issue Permalink
    Last edited by Olivier Maloteau
  6. return $actions;
  7. }
  8. /**