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 12namespace Symfony\Component\CssSelector\Exception; 13 14use 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 */ 24class 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