Tag missing internals

This commit is contained in:
Maxime Steinhausser 2016-11-24 22:33:31 +01:00
parent 30d161c0ae
commit 97e94b4019
3 changed files with 6 additions and 6 deletions

View File

@ -155,11 +155,11 @@ class ChoiceFormField extends FormField
/** /**
* Adds a choice to the current ones. * Adds a choice to the current ones.
* *
* This method should only be used internally.
*
* @param \DOMElement $node * @param \DOMElement $node
* *
* @throws \LogicException When choice provided is not multiple nor radio * @throws \LogicException When choice provided is not multiple nor radio
*
* @internal
*/ */
public function addChoice(\DOMElement $node) public function addChoice(\DOMElement $node)
{ {

View File

@ -14,9 +14,9 @@ namespace Symfony\Component\Form\Util;
/** /**
* Iterator for {@link OrderedHashMap} objects. * Iterator for {@link OrderedHashMap} objects.
* *
* This class is internal and should not be used.
*
* @author Bernhard Schussek <bschussek@gmail.com> * @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/ */
class OrderedHashMapIterator implements \Iterator class OrderedHashMapIterator implements \Iterator
{ {

View File

@ -12,9 +12,9 @@
namespace Symfony\Component\Security\Core\Authentication\RememberMe; namespace Symfony\Component\Security\Core\Authentication\RememberMe;
/** /**
* This class is only used by PersistentTokenRememberMeServices internally.
*
* @author Johannes M. Schmitt <schmittjoh@gmail.com> * @author Johannes M. Schmitt <schmittjoh@gmail.com>
*
* @internal
*/ */
final class PersistentToken implements PersistentTokenInterface final class PersistentToken implements PersistentTokenInterface
{ {