update to laravel 5.7 and try getting autologin saved

This commit is contained in:
Kode
2018-10-14 20:50:32 +01:00
parent c3da17befc
commit 6501aacb1b
2402 changed files with 79064 additions and 28971 deletions

View File

@@ -1266,4 +1266,111 @@ array(
)
)
)
)
-----
<?php
$array = [
$this->value $oopsAnotherValue->get()
];
$array = [
$value $oopsAnotherValue
];
$array = [
'key' => $value $oopsAnotherValue
];
-----
!!php7
Syntax error, unexpected T_VARIABLE, expecting ',' or ')' or ']' from 3:18 to 3:34
Syntax error, unexpected T_VARIABLE, expecting ',' or ')' or ']' from 6:12 to 6:28
Syntax error, unexpected T_VARIABLE, expecting ',' or ')' or ']' from 9:21 to 9:37
array(
0: Stmt_Expression(
expr: Expr_Assign(
var: Expr_Variable(
name: array
)
expr: Expr_Array(
items: array(
0: Expr_ArrayItem(
key: null
value: Expr_PropertyFetch(
var: Expr_Variable(
name: this
)
name: Identifier(
name: value
)
)
byRef: false
)
1: Expr_ArrayItem(
key: null
value: Expr_MethodCall(
var: Expr_Variable(
name: oopsAnotherValue
)
name: Identifier(
name: get
)
args: array(
)
)
byRef: false
)
)
)
)
)
1: Stmt_Expression(
expr: Expr_Assign(
var: Expr_Variable(
name: array
)
expr: Expr_Array(
items: array(
0: Expr_ArrayItem(
key: null
value: Expr_Variable(
name: value
)
byRef: false
)
1: Expr_ArrayItem(
key: null
value: Expr_Variable(
name: oopsAnotherValue
)
byRef: false
)
)
)
)
)
2: Stmt_Expression(
expr: Expr_Assign(
var: Expr_Variable(
name: array
)
expr: Expr_Array(
items: array(
0: Expr_ArrayItem(
key: Scalar_String(
value: key
)
value: Expr_Variable(
name: value
)
byRef: false
)
1: Expr_ArrayItem(
key: null
value: Expr_Variable(
name: oopsAnotherValue
)
byRef: false
)
)
)
)
)
)