Laravel version update
Laravel version update
This commit is contained in:
@@ -27,7 +27,7 @@ class SyntaxErrorException extends ParseException
|
||||
* @param string $expectedValue
|
||||
* @param Token $foundToken
|
||||
*
|
||||
* @return SyntaxErrorException
|
||||
* @return self
|
||||
*/
|
||||
public static function unexpectedToken($expectedValue, Token $foundToken)
|
||||
{
|
||||
@@ -38,7 +38,7 @@ class SyntaxErrorException extends ParseException
|
||||
* @param string $pseudoElement
|
||||
* @param string $unexpectedLocation
|
||||
*
|
||||
* @return SyntaxErrorException
|
||||
* @return self
|
||||
*/
|
||||
public static function pseudoElementFound($pseudoElement, $unexpectedLocation)
|
||||
{
|
||||
@@ -48,7 +48,7 @@ class SyntaxErrorException extends ParseException
|
||||
/**
|
||||
* @param int $position
|
||||
*
|
||||
* @return SyntaxErrorException
|
||||
* @return self
|
||||
*/
|
||||
public static function unclosedString($position)
|
||||
{
|
||||
@@ -56,7 +56,7 @@ class SyntaxErrorException extends ParseException
|
||||
}
|
||||
|
||||
/**
|
||||
* @return SyntaxErrorException
|
||||
* @return self
|
||||
*/
|
||||
public static function nestedNot()
|
||||
{
|
||||
@@ -64,7 +64,7 @@ class SyntaxErrorException extends ParseException
|
||||
}
|
||||
|
||||
/**
|
||||
* @return SyntaxErrorException
|
||||
* @return self
|
||||
*/
|
||||
public static function stringAsFunctionArgument()
|
||||
{
|
||||
|
2
vendor/symfony/css-selector/LICENSE
vendored
2
vendor/symfony/css-selector/LICENSE
vendored
@@ -1,4 +1,4 @@
|
||||
Copyright (c) 2004-2016 Fabien Potencier
|
||||
Copyright (c) 2004-2017 Fabien Potencier
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
@@ -61,7 +61,7 @@ class Specificity
|
||||
/**
|
||||
* @param Specificity $specificity
|
||||
*
|
||||
* @return Specificity
|
||||
* @return self
|
||||
*/
|
||||
public function plus(Specificity $specificity)
|
||||
{
|
||||
|
@@ -118,8 +118,6 @@ class Reader
|
||||
$this->position += $length;
|
||||
}
|
||||
|
||||
/**
|
||||
*/
|
||||
public function moveToEnd()
|
||||
{
|
||||
$this->position = $this->length;
|
||||
|
@@ -61,7 +61,7 @@ class TokenStream
|
||||
*
|
||||
* @param Token $token
|
||||
*
|
||||
* @return TokenStream
|
||||
* @return $this
|
||||
*/
|
||||
public function push(Token $token)
|
||||
{
|
||||
@@ -73,7 +73,7 @@ class TokenStream
|
||||
/**
|
||||
* Freezes stream.
|
||||
*
|
||||
* @return TokenStream
|
||||
* @return $this
|
||||
*/
|
||||
public function freeze()
|
||||
{
|
||||
|
@@ -50,7 +50,7 @@ class NodeExtension extends AbstractExtension
|
||||
* @param int $flag
|
||||
* @param bool $on
|
||||
*
|
||||
* @return NodeExtension
|
||||
* @return $this
|
||||
*/
|
||||
public function setFlag($flag, $on)
|
||||
{
|
||||
|
@@ -146,7 +146,7 @@ class Translator implements TranslatorInterface
|
||||
*
|
||||
* @param Extension\ExtensionInterface $extension
|
||||
*
|
||||
* @return Translator
|
||||
* @return $this
|
||||
*/
|
||||
public function registerExtension(Extension\ExtensionInterface $extension)
|
||||
{
|
||||
@@ -182,7 +182,7 @@ class Translator implements TranslatorInterface
|
||||
*
|
||||
* @param ParserInterface $shortcut
|
||||
*
|
||||
* @return Translator
|
||||
* @return $this
|
||||
*/
|
||||
public function registerParserShortcut(ParserInterface $shortcut)
|
||||
{
|
||||
|
@@ -66,7 +66,7 @@ class XPathExpr
|
||||
/**
|
||||
* @param $condition
|
||||
*
|
||||
* @return XPathExpr
|
||||
* @return $this
|
||||
*/
|
||||
public function addCondition($condition)
|
||||
{
|
||||
@@ -84,7 +84,7 @@ class XPathExpr
|
||||
}
|
||||
|
||||
/**
|
||||
* @return XPathExpr
|
||||
* @return $this
|
||||
*/
|
||||
public function addNameTest()
|
||||
{
|
||||
@@ -97,7 +97,7 @@ class XPathExpr
|
||||
}
|
||||
|
||||
/**
|
||||
* @return XPathExpr
|
||||
* @return $this
|
||||
*/
|
||||
public function addStarPrefix()
|
||||
{
|
||||
@@ -112,7 +112,7 @@ class XPathExpr
|
||||
* @param string $combiner
|
||||
* @param XPathExpr $expr
|
||||
*
|
||||
* @return XPathExpr
|
||||
* @return $this
|
||||
*/
|
||||
public function join($combiner, XPathExpr $expr)
|
||||
{
|
||||
|
Reference in New Issue
Block a user