]> Raphaël G. Git Repositories - userbundle/commitdiff
Cleanup
authorRaphaël Gertz <git@rapsys.eu>
Thu, 7 Mar 2024 17:48:13 +0000 (18:48 +0100)
committerRaphaël Gertz <git@rapsys.eu>
Thu, 7 Mar 2024 17:48:13 +0000 (18:48 +0100)
Controller/AbstractController.php
DependencyInjection/Configuration.php
Exception/UnactivatedException.php
Factory.php
Handler/AuthenticationSuccessHandler.php
Repository.php

index 8a0a2c824e506e8b152445f7dc67008fef6d94d3..9f771e6ff443954a984d7f0efcd2e00f75661b86 100644 (file)
@@ -41,9 +41,9 @@ use Rapsys\PackBundle\Util\SluggerUtil;
 use Rapsys\UserBundle\RapsysUserBundle;
 
 /**
- * Provides common features needed in controllers.
- *
  * {@inheritdoc}
+ *
+ * Provides common features needed in controllers.
  */
 abstract class AbstractController extends BaseAbstractController implements ServiceSubscriberInterface {
        /**
@@ -268,9 +268,9 @@ abstract class AbstractController extends BaseAbstractController implements Serv
        }
 
        /**
-        * Renders a view
-        *
         * {@inheritdoc}
+        *
+        * Renders a view
         */
        protected function render(string $view, array $parameters = [], Response $response = null): Response {
                //Create response when null
index 7c053c9543bbb21eb5d2e6a5e755333ba612b3ec..80a35526834a682611176b9eb1bd0dfa55c965e0 100644 (file)
@@ -17,11 +17,11 @@ use Symfony\Component\Config\Definition\ConfigurationInterface;
 use Rapsys\UserBundle\RapsysUserBundle;
 
 /**
+ * {@inheritdoc}
+ *
  * This is the class that validates and merges configuration from your app/config files.
  *
  * @link http://symfony.com/doc/current/cookbook/bundles/configuration.html
- *
- * {@inheritdoc}
  */
 class Configuration implements ConfigurationInterface {
        /**
index cbf367d0e30997a4db164d4ca3311bb569e4bc6d..b1571494f3a35a1187c94eb0f6a6d7f7055d36d4 100644 (file)
@@ -14,9 +14,9 @@ namespace Rapsys\UserBundle\Exception;
 use Symfony\Component\Security\Core\Exception\AccountStatusException;
 
 /**
- * UnactivatedException is thrown when the user account is unactivated.
- *
  * {@inheritdoc}
+ *
+ * UnactivatedException is thrown when the user account is unactivated.
  */
 class UnactivatedException extends AccountStatusException {
     /**
index e2d05d55cd97ff19d12bc2770b037601d12602c5..abfbc5f1a4f6787d4af9b63f415709685baf2e22 100644 (file)
@@ -14,6 +14,7 @@ namespace Rapsys\UserBundle;
 use Doctrine\ORM\EntityManagerInterface;
 use Doctrine\ORM\Repository\RepositoryFactory as RepositoryFactoryInterface;
 use Doctrine\Persistence\ObjectRepository;
+
 use Symfony\Component\HttpFoundation\RequestStack;
 use Symfony\Component\Routing\RouterInterface;
 use Symfony\Contracts\Translation\TranslatorInterface;
index 11e8325829081ea16d9b186cfee825cf50e30199..c57c68a03f9fa19c890504af6d199d7f8261422e 100644 (file)
@@ -37,13 +37,13 @@ class AuthenticationSuccessHandler extends DefaultAuthenticationSuccessHandler {
        /**
         * Default options
         */
-    protected array $defaultOptions = [
-        'always_use_default_target_path' => false,
-        'default_target_path' => '/',
-        'login_path' => '/login',
-        'target_path_parameter' => '_target_path',
-        'use_referer' => false,
-    ];
+       protected array $defaultOptions = [
+               'always_use_default_target_path' => false,
+               'default_target_path' => '/',
+               'login_path' => '/login',
+               'target_path_parameter' => '_target_path',
+               'use_referer' => false,
+       ];
 
        /**
         * {@inheritdoc}
@@ -53,12 +53,12 @@ class AuthenticationSuccessHandler extends DefaultAuthenticationSuccessHandler {
                $this->setOptions($options);
        }
 
-    /**
+       /**
+        * {@inheritdoc}
+        *
         * This is called when an interactive authentication attempt succeeds
         *
         * In use_referer case it will handle correctly when login_path is a route name or path
-        *
-        * {@inheritdoc}
         */
        public function onAuthenticationSuccess(Request $request, TokenInterface $token): Response {
                //Set login route
index b21b0ca90f87819866419346f01b13533cf5b6c5..c7a654b4cf5806cfeb6bbcb50cf4408d0a293856 100644 (file)
@@ -20,9 +20,9 @@ use Symfony\Contracts\Translation\TranslatorInterface;
 use Rapsys\PackBundle\Util\SluggerUtil;
 
 /**
- * Repository
- *
  * {@inheritdoc}
+ *
+ * Repository
  */
 class Repository extends EntityRepository {
        /**