From 93ffa61e425d59373ddf42f5c09224e20e09d3f3 Mon Sep 17 00:00:00 2001 From: Christophe Coevoet Date: Mon, 21 Sep 2015 01:46:31 +0200 Subject: [PATCH] Fix the phpdoc in the CssSelector TranslatorInterface --- .../Component/CssSelector/XPath/TranslatorInterface.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/CssSelector/XPath/TranslatorInterface.php b/src/Symfony/Component/CssSelector/XPath/TranslatorInterface.php index 1d9d1c88ee..bc19ae8634 100644 --- a/src/Symfony/Component/CssSelector/XPath/TranslatorInterface.php +++ b/src/Symfony/Component/CssSelector/XPath/TranslatorInterface.php @@ -29,7 +29,7 @@ interface TranslatorInterface * @param string $cssExpr * @param string $prefix * - * @return XPathExpr + * @return string */ public function cssToXPath($cssExpr, $prefix = 'descendant-or-self::'); @@ -39,7 +39,7 @@ interface TranslatorInterface * @param SelectorNode $selector * @param string $prefix * - * @return XPathExpr + * @return string */ public function selectorToXPath(SelectorNode $selector, $prefix = 'descendant-or-self::'); }