Laravel version update

Laravel version update
This commit is contained in:
Manish Verma
2018-08-06 18:48:58 +05:30
parent d143048413
commit 126fbb0255
13678 changed files with 1031482 additions and 778530 deletions

View File

@@ -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()
{

View File

@@ -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

View File

@@ -61,7 +61,7 @@ class Specificity
/**
* @param Specificity $specificity
*
* @return Specificity
* @return self
*/
public function plus(Specificity $specificity)
{

View File

@@ -118,8 +118,6 @@ class Reader
$this->position += $length;
}
/**
*/
public function moveToEnd()
{
$this->position = $this->length;

View File

@@ -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()
{

View File

@@ -50,7 +50,7 @@ class NodeExtension extends AbstractExtension
* @param int $flag
* @param bool $on
*
* @return NodeExtension
* @return $this
*/
public function setFlag($flag, $on)
{

View File

@@ -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)
{

View File

@@ -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)
{