PluginProbe
Smart Grid-Layout Design for Contact Form 7 / 3.3.3
Smart Grid-Layout Design for Contact Form 7 v3.3.3
4.18.0 4.17.0 3.2.0 3.2.1 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 4.0.0 4.0.1 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.10 4.11 4.12 4.13 4.14 All 119 releases
cf7-grid-layout / assets / simple-html-dom / symfony / css-selector / Exception / SyntaxErrorException.php

SyntaxErrorException.php in Smart Grid-Layout Design for Contact Form 7 3.3.3, at assets/simple-html-dom/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