Update to Drupal 8.2.6. For more information, see https://www.drupal.org/project/drupal/releases/8.2.6

This commit is contained in:
Pantheon Automation 2017-02-02 16:28:38 -08:00 committed by Greg Anderson
parent db56c09587
commit f1e72395cb
588 changed files with 26857 additions and 2777 deletions

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()
{
@ -85,9 +85,9 @@ class TokenStream
/**
* Returns next token.
*
* @throws InternalErrorException If there is no more token
*
* @return Token
*
* @throws InternalErrorException If there is no more token
*/
public function getNext()
{
@ -133,9 +133,9 @@ class TokenStream
/**
* Returns nex identifier token.
*
* @throws SyntaxErrorException If next token is not an identifier
*
* @return string The identifier token value
*
* @throws SyntaxErrorException If next token is not an identifier
*/
public function getNextIdentifier()
{
@ -151,9 +151,9 @@ class TokenStream
/**
* Returns nex identifier or star delimiter token.
*
* @throws SyntaxErrorException If next token is not an identifier or a star delimiter
*
* @return null|string The identifier token value or null if star found
*
* @throws SyntaxErrorException If next token is not an identifier or a star delimiter
*/
public function getNextIdentifierOrStar()
{