diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2014-04-16 09:04:52 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-04-16 09:04:52 +0200 |
commit | 74eaf535ddcd6cad834c68e7802cfcb08f400c1e (patch) | |
tree | 6e2a4283111299cc757cda0f0ab55205a1d92ca3 /Core/User | |
parent | 6c29ed759766479de35af52bcdda6e9e2a945b2d (diff) | |
parent | a408a8a27c9f808193e2128845153ddeb411345e (diff) | |
download | symfony-security-74eaf535ddcd6cad834c68e7802cfcb08f400c1e.zip symfony-security-74eaf535ddcd6cad834c68e7802cfcb08f400c1e.tar.gz symfony-security-74eaf535ddcd6cad834c68e7802cfcb08f400c1e.tar.bz2 |
minor #10713 made {@inheritdoc} annotations consistent across the board (fabpot)
This PR was merged into the 2.3 branch.
Discussion
----------
made {@inheritdoc} annotations consistent across the board
| Q | A
| ------------- | ---
| License | MIT
Commits
-------
810b9ed made {@inheritdoc} annotations consistent across the board
Diffstat (limited to 'Core/User')
-rw-r--r-- | Core/User/ChainUserProvider.php | 6 | ||||
-rw-r--r-- | Core/User/InMemoryUserProvider.php | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Core/User/ChainUserProvider.php b/Core/User/ChainUserProvider.php index fc72074..6e14a4f 100644 --- a/Core/User/ChainUserProvider.php +++ b/Core/User/ChainUserProvider.php @@ -40,7 +40,7 @@ class ChainUserProvider implements UserProviderInterface } /** - * {@inheritDoc} + * {@inheritdoc} */ public function loadUserByUsername($username) { @@ -58,7 +58,7 @@ class ChainUserProvider implements UserProviderInterface } /** - * {@inheritDoc} + * {@inheritdoc} */ public function refreshUser(UserInterface $user) { @@ -85,7 +85,7 @@ class ChainUserProvider implements UserProviderInterface } /** - * {@inheritDoc} + * {@inheritdoc} */ public function supportsClass($class) { diff --git a/Core/User/InMemoryUserProvider.php b/Core/User/InMemoryUserProvider.php index 074c21e..624eb3d 100644 --- a/Core/User/InMemoryUserProvider.php +++ b/Core/User/InMemoryUserProvider.php @@ -81,7 +81,7 @@ class InMemoryUserProvider implements UserProviderInterface } /** - * {@inheritDoc} + * {@inheritdoc} */ public function refreshUser(UserInterface $user) { @@ -93,7 +93,7 @@ class InMemoryUserProvider implements UserProviderInterface } /** - * {@inheritDoc} + * {@inheritdoc} */ public function supportsClass($class) { |