PluginProbe
BerqWP – All-In-One Optimization for Core Web Vitals, Cache, CDN, Images, CSS & JavaScript / trunk
BerqWP – All-In-One Optimization for Core Web Vitals, Cache, CDN, Images, CSS & JavaScript vtrunk
4.1.16 4.1.15 4.1.14 4.1.13 4.1.12 4.1.11 4.1.10 4.0.30 4.0.29 4.0.28 4.0.27 4.0.26 4.0.24 4.0.25 4.0.23 4.0.22 4.0.21 4.0.19 4.0.18 4.0.17 4.0.16 1.9.3 1.9.4 1.9.5 1.9.6 All 170 releases
searchpro / BerqWP / vendor / symfony / css-selector / Exception / SyntaxErrorException.php

SyntaxErrorException.php in BerqWP – All-In-One Optimization for Core Web Vitals, Cache, CDN, Images, CSS & JavaScript trunk, at BerqWP/vendor/symfony/css-selector/Exception/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