PluginProbe
WP Job Manager / 2.4.7
WP Job Manager v2.4.7
2.4.7 2.4.6 2.4.5 2.4.4 2.4.3 2.4.2 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.1.0 1.1.1 1.1.2 1.1.3 1.10.0 1.11.0 1.11.1 1.12.0 1.12.1 1.13.0 1.14.0 1.15.0 All 154 releases
wp-job-manager / vendor / symfony / css-selector / Exception / SyntaxErrorException.php
SyntaxErrorException.php
66 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /*
4 * This file is part of the Symfony package.
5 *
6 * (c) Fabien Potencier <fabien@symfony.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12 namespace Symfony\Component\CssSelector\Exception;
13
14 use Symfony\Component\CssSelector\Parser\Token;
15
16 /**
17 * ParseException is thrown when a CSS selector syntax is not valid.
18 *
19 * This component is a port of the Python cssselect library,
20 * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
21 *
22 * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>
23 */
24 class SyntaxErrorException extends ParseException
25 {
26 /**
27 * @return self
28 */
29 public static function unexpectedToken(string $expectedValue, Token $foundToken)
30 {
31 return new self(sprintf('Expected %s, but %s found.', $expectedValue, $foundToken));
32 }
33
34 /**
35 * @return self
36 */
37 public static function pseudoElementFound(string $pseudoElement, string $unexpectedLocation)
38 {
39 return new self(sprintf('Unexpected pseudo-element "::%s" found %s.', $pseudoElement, $unexpectedLocation));
40 }
41
42 /**
43 * @return self
44 */
45 public static function unclosedString(int $position)
46 {
47 return new self(sprintf('Unclosed/invalid string at %s.', $position));
48 }
49
50 /**
51 * @return self
52 */
53 public static function nestedNot()
54 {
55 return new self('Got nested ::not().');
56 }
57
58 /**
59 * @return self
60 */
61 public static function stringAsFunctionArgument()
62 {
63 return new self('String not allowed as function argument.');
64 }
65 }
66