Minor: Format code + fix psalm error (#5608)

pull/5609/head
Angel Fernando Quiroz Campos 5 months ago committed by GitHub
parent 156497503d
commit 2ff1e7488f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      src/CoreBundle/Form/ChangePasswordType.php
  2. 3
      src/CoreBundle/Repository/XApiToolLaunchRepository.php

@ -11,6 +11,11 @@ use Symfony\Component\Form\Extension\Core\Type\PasswordType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
/**
* @template T of object
*
* @extends AbstractType<T>
*/
class ChangePasswordType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options): void

@ -110,6 +110,7 @@ class XApiToolLaunchRepository extends ServiceEntityRepository
->setParameter('type', TOOL_XAPI)
->setParameter('tool_id', $toolLaunch->getId())
->getQuery()
->getSingleScalarResult();
->getSingleScalarResult()
;
}
}

Loading…
Cancel
Save