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

@@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);
namespace PhpParser\Node\Stmt;
@@ -6,7 +6,7 @@ use PhpParser\Node;
class DeclareDeclare extends Node\Stmt
{
/** @var string Key */
/** @var Node\Identifier Key */
public $key;
/** @var Node\Expr Value */
public $value;
@@ -14,17 +14,21 @@ class DeclareDeclare extends Node\Stmt
/**
* Constructs a declare key=>value pair node.
*
* @param string $key Key
* @param Node\Expr $value Value
* @param array $attributes Additional attributes
* @param string|Node\Identifier $key Key
* @param Node\Expr $value Value
* @param array $attributes Additional attributes
*/
public function __construct($key, Node\Expr $value, array $attributes = array()) {
public function __construct($key, Node\Expr $value, array $attributes = []) {
parent::__construct($attributes);
$this->key = $key;
$this->key = \is_string($key) ? new Node\Identifier($key) : $key;
$this->value = $value;
}
public function getSubNodeNames() {
return array('key', 'value');
public function getSubNodeNames() : array {
return ['key', 'value'];
}
public function getType() : string {
return 'Stmt_DeclareDeclare';
}
}