Fix the phpdoc in the CssSelector TranslatorInterface

This commit is contained in:
Christophe Coevoet 2015-09-21 01:46:31 +02:00
parent da29357d49
commit 93ffa61e42
1 changed files with 2 additions and 2 deletions

View File

@ -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::');
}