diff --git a/Node/AbstractNode.php b/Node/AbstractNode.php index b1c8e95..7477e91 100644 --- a/Node/AbstractNode.php +++ b/Node/AbstractNode.php @@ -18,6 +18,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ abstract class AbstractNode implements NodeInterface { diff --git a/Node/AttributeNode.php b/Node/AttributeNode.php index b10a4dd..af872b7 100644 --- a/Node/AttributeNode.php +++ b/Node/AttributeNode.php @@ -18,6 +18,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class AttributeNode extends AbstractNode { diff --git a/Node/ClassNode.php b/Node/ClassNode.php index 544342f..f965e77 100644 --- a/Node/ClassNode.php +++ b/Node/ClassNode.php @@ -18,6 +18,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class ClassNode extends AbstractNode { diff --git a/Node/CombinedSelectorNode.php b/Node/CombinedSelectorNode.php index 6d00db4..39f6599 100644 --- a/Node/CombinedSelectorNode.php +++ b/Node/CombinedSelectorNode.php @@ -18,6 +18,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class CombinedSelectorNode extends AbstractNode { diff --git a/Node/ElementNode.php b/Node/ElementNode.php index 71ef121..06e343e 100644 --- a/Node/ElementNode.php +++ b/Node/ElementNode.php @@ -18,6 +18,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class ElementNode extends AbstractNode { diff --git a/Node/FunctionNode.php b/Node/FunctionNode.php index f94af8d..612f348 100644 --- a/Node/FunctionNode.php +++ b/Node/FunctionNode.php @@ -20,6 +20,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class FunctionNode extends AbstractNode { diff --git a/Node/HashNode.php b/Node/HashNode.php index ddbe764..20db465 100644 --- a/Node/HashNode.php +++ b/Node/HashNode.php @@ -18,6 +18,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class HashNode extends AbstractNode { diff --git a/Node/NegationNode.php b/Node/NegationNode.php index 0fafb0a..4b5aa22 100644 --- a/Node/NegationNode.php +++ b/Node/NegationNode.php @@ -18,6 +18,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class NegationNode extends AbstractNode { diff --git a/Node/NodeInterface.php b/Node/NodeInterface.php index dd300e2..d919e20 100644 --- a/Node/NodeInterface.php +++ b/Node/NodeInterface.php @@ -18,6 +18,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ interface NodeInterface { diff --git a/Node/PseudoNode.php b/Node/PseudoNode.php index 0e413ad..c23ddd5 100644 --- a/Node/PseudoNode.php +++ b/Node/PseudoNode.php @@ -18,6 +18,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class PseudoNode extends AbstractNode { diff --git a/Node/SelectorNode.php b/Node/SelectorNode.php index 4958da5..729e091 100644 --- a/Node/SelectorNode.php +++ b/Node/SelectorNode.php @@ -18,6 +18,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class SelectorNode extends AbstractNode { diff --git a/Node/Specificity.php b/Node/Specificity.php index 0ce0c3f..a24b4fd 100644 --- a/Node/Specificity.php +++ b/Node/Specificity.php @@ -20,6 +20,8 @@ * @see http://www.w3.org/TR/selectors/#specificity * * @author Jean-François Simon + * + * @internal */ class Specificity { diff --git a/Parser/Handler/CommentHandler.php b/Parser/Handler/CommentHandler.php index f480776..a29775c 100644 --- a/Parser/Handler/CommentHandler.php +++ b/Parser/Handler/CommentHandler.php @@ -21,6 +21,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class CommentHandler implements HandlerInterface { diff --git a/Parser/Handler/HandlerInterface.php b/Parser/Handler/HandlerInterface.php index 049ddd3..a1297c8 100644 --- a/Parser/Handler/HandlerInterface.php +++ b/Parser/Handler/HandlerInterface.php @@ -21,6 +21,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ interface HandlerInterface { diff --git a/Parser/Handler/HashHandler.php b/Parser/Handler/HashHandler.php index b144223..f74bda5 100644 --- a/Parser/Handler/HashHandler.php +++ b/Parser/Handler/HashHandler.php @@ -24,6 +24,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class HashHandler implements HandlerInterface { diff --git a/Parser/Handler/IdentifierHandler.php b/Parser/Handler/IdentifierHandler.php index 86739ea..358c7c1 100644 --- a/Parser/Handler/IdentifierHandler.php +++ b/Parser/Handler/IdentifierHandler.php @@ -24,6 +24,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class IdentifierHandler implements HandlerInterface { diff --git a/Parser/Handler/NumberHandler.php b/Parser/Handler/NumberHandler.php index 97a9387..4ea5c48 100644 --- a/Parser/Handler/NumberHandler.php +++ b/Parser/Handler/NumberHandler.php @@ -23,6 +23,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class NumberHandler implements HandlerInterface { diff --git a/Parser/Handler/StringHandler.php b/Parser/Handler/StringHandler.php index 9f7a594..4205296 100644 --- a/Parser/Handler/StringHandler.php +++ b/Parser/Handler/StringHandler.php @@ -26,6 +26,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class StringHandler implements HandlerInterface { diff --git a/Parser/Handler/WhitespaceHandler.php b/Parser/Handler/WhitespaceHandler.php index 234bbd8..4c2d335 100644 --- a/Parser/Handler/WhitespaceHandler.php +++ b/Parser/Handler/WhitespaceHandler.php @@ -22,6 +22,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class WhitespaceHandler implements HandlerInterface { diff --git a/Parser/Parser.php b/Parser/Parser.php index 9625e3e..f94aea3 100644 --- a/Parser/Parser.php +++ b/Parser/Parser.php @@ -22,6 +22,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class Parser implements ParserInterface { diff --git a/Parser/ParserInterface.php b/Parser/ParserInterface.php index 3b43a52..c5af203 100644 --- a/Parser/ParserInterface.php +++ b/Parser/ParserInterface.php @@ -20,6 +20,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ interface ParserInterface { diff --git a/Parser/Reader.php b/Parser/Reader.php index ba2a7f0..4113636 100644 --- a/Parser/Reader.php +++ b/Parser/Reader.php @@ -18,6 +18,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class Reader { diff --git a/Parser/Shortcut/ClassParser.php b/Parser/Shortcut/ClassParser.php index 83f8d13..c513de5 100644 --- a/Parser/Shortcut/ClassParser.php +++ b/Parser/Shortcut/ClassParser.php @@ -23,6 +23,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class ClassParser implements ParserInterface { diff --git a/Parser/Shortcut/ElementParser.php b/Parser/Shortcut/ElementParser.php index 00e4435..c29f5e4 100644 --- a/Parser/Shortcut/ElementParser.php +++ b/Parser/Shortcut/ElementParser.php @@ -22,6 +22,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class ElementParser implements ParserInterface { diff --git a/Parser/Shortcut/EmptyStringParser.php b/Parser/Shortcut/EmptyStringParser.php index 98a08fd..016cf0a 100644 --- a/Parser/Shortcut/EmptyStringParser.php +++ b/Parser/Shortcut/EmptyStringParser.php @@ -26,6 +26,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class EmptyStringParser implements ParserInterface { diff --git a/Parser/Shortcut/HashParser.php b/Parser/Shortcut/HashParser.php index 3dbad79..3f3883b 100644 --- a/Parser/Shortcut/HashParser.php +++ b/Parser/Shortcut/HashParser.php @@ -23,6 +23,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class HashParser implements ParserInterface { diff --git a/Parser/Token.php b/Parser/Token.php index 6f7586f..68fac59 100644 --- a/Parser/Token.php +++ b/Parser/Token.php @@ -18,6 +18,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class Token { diff --git a/Parser/TokenStream.php b/Parser/TokenStream.php index c0525d7..1ec727f 100644 --- a/Parser/TokenStream.php +++ b/Parser/TokenStream.php @@ -21,6 +21,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class TokenStream { diff --git a/Parser/Tokenizer/Tokenizer.php b/Parser/Tokenizer/Tokenizer.php index 79fa7b7..aa9fc50 100644 --- a/Parser/Tokenizer/Tokenizer.php +++ b/Parser/Tokenizer/Tokenizer.php @@ -23,6 +23,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class Tokenizer { diff --git a/Parser/Tokenizer/TokenizerEscaping.php b/Parser/Tokenizer/TokenizerEscaping.php index bf5096b..af4c31e 100644 --- a/Parser/Tokenizer/TokenizerEscaping.php +++ b/Parser/Tokenizer/TokenizerEscaping.php @@ -18,6 +18,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class TokenizerEscaping { diff --git a/Parser/Tokenizer/TokenizerPatterns.php b/Parser/Tokenizer/TokenizerPatterns.php index 326f020..5b071cd 100644 --- a/Parser/Tokenizer/TokenizerPatterns.php +++ b/Parser/Tokenizer/TokenizerPatterns.php @@ -18,6 +18,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class TokenizerPatterns { diff --git a/XPath/Extension/AbstractExtension.php b/XPath/Extension/AbstractExtension.php index c70609c..026ac06 100644 --- a/XPath/Extension/AbstractExtension.php +++ b/XPath/Extension/AbstractExtension.php @@ -18,6 +18,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ abstract class AbstractExtension implements ExtensionInterface { diff --git a/XPath/Extension/AttributeMatchingExtension.php b/XPath/Extension/AttributeMatchingExtension.php index cbe48c5..6ace8b5 100644 --- a/XPath/Extension/AttributeMatchingExtension.php +++ b/XPath/Extension/AttributeMatchingExtension.php @@ -21,6 +21,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class AttributeMatchingExtension extends AbstractExtension { diff --git a/XPath/Extension/CombinationExtension.php b/XPath/Extension/CombinationExtension.php index 9ce018f..0d2d658 100644 --- a/XPath/Extension/CombinationExtension.php +++ b/XPath/Extension/CombinationExtension.php @@ -20,6 +20,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class CombinationExtension extends AbstractExtension { diff --git a/XPath/Extension/ExtensionInterface.php b/XPath/Extension/ExtensionInterface.php index 9b47f24..3607022 100644 --- a/XPath/Extension/ExtensionInterface.php +++ b/XPath/Extension/ExtensionInterface.php @@ -18,6 +18,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ interface ExtensionInterface { diff --git a/XPath/Extension/FunctionExtension.php b/XPath/Extension/FunctionExtension.php index 41ece8a..ea05523 100644 --- a/XPath/Extension/FunctionExtension.php +++ b/XPath/Extension/FunctionExtension.php @@ -25,6 +25,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class FunctionExtension extends AbstractExtension { diff --git a/XPath/Extension/HtmlExtension.php b/XPath/Extension/HtmlExtension.php index 0da74d4..de6ce41 100644 --- a/XPath/Extension/HtmlExtension.php +++ b/XPath/Extension/HtmlExtension.php @@ -23,6 +23,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class HtmlExtension extends AbstractExtension { diff --git a/XPath/Extension/NodeExtension.php b/XPath/Extension/NodeExtension.php index 2b8920f..9d7f8fa 100644 --- a/XPath/Extension/NodeExtension.php +++ b/XPath/Extension/NodeExtension.php @@ -22,6 +22,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class NodeExtension extends AbstractExtension { diff --git a/XPath/Extension/PseudoClassExtension.php b/XPath/Extension/PseudoClassExtension.php index 008ec2b..1c8b217 100644 --- a/XPath/Extension/PseudoClassExtension.php +++ b/XPath/Extension/PseudoClassExtension.php @@ -21,6 +21,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class PseudoClassExtension extends AbstractExtension { diff --git a/XPath/Translator.php b/XPath/Translator.php index 5053793..8c021b3 100644 --- a/XPath/Translator.php +++ b/XPath/Translator.php @@ -25,6 +25,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class Translator implements TranslatorInterface { diff --git a/XPath/TranslatorInterface.php b/XPath/TranslatorInterface.php index bc19ae8..0b5de83 100644 --- a/XPath/TranslatorInterface.php +++ b/XPath/TranslatorInterface.php @@ -20,6 +20,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ interface TranslatorInterface { diff --git a/XPath/XPathExpr.php b/XPath/XPathExpr.php index c7ef97c..420ef3d 100644 --- a/XPath/XPathExpr.php +++ b/XPath/XPathExpr.php @@ -18,6 +18,8 @@ * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon + * + * @internal */ class XPathExpr {