Merge pull request #4036 from dokuwiki/issue4033
[dokuwiki.git] / _test / vendor / symfony / css-selector / Exception / SyntaxErrorException.php
blob1200c979ea6acd0dfd0e72dac5a12d3f35224ed8
1 <?php
3 /*
4 * This file is part of the Symfony package.
6 * (c) Fabien Potencier <fabien@symfony.com>
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
12 namespace Symfony\Component\CssSelector\Exception;
14 use Symfony\Component\CssSelector\Parser\Token;
16 /**
17 * ParseException is thrown when a CSS selector syntax is not valid.
19 * This component is a port of the Python cssselect library,
20 * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
22 * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>
24 class SyntaxErrorException extends ParseException
26 /**
27 * @param string $expectedValue
29 * @return self
31 public static function unexpectedToken($expectedValue, Token $foundToken)
33 return new self(sprintf('Expected %s, but %s found.', $expectedValue, $foundToken));
36 /**
37 * @param string $pseudoElement
38 * @param string $unexpectedLocation
40 * @return self
42 public static function pseudoElementFound($pseudoElement, $unexpectedLocation)
44 return new self(sprintf('Unexpected pseudo-element "::%s" found %s.', $pseudoElement, $unexpectedLocation));
47 /**
48 * @param int $position
50 * @return self
52 public static function unclosedString($position)
54 return new self(sprintf('Unclosed/invalid string at %s.', $position));
57 /**
58 * @return self
60 public static function nestedNot()
62 return new self('Got nested ::not().');
65 /**
66 * @return self
68 public static function stringAsFunctionArgument()
70 return new self('String not allowed as function argument.');