-
-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathObjectInstantiationUnitTest.inc
53 lines (41 loc) · 1.11 KB
/
ObjectInstantiationUnitTest.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
$obj = new MyClass();
$obj =& new MyClass();
$obj = &new MyClass();
new MyClass();
$objects = array('one' => new MyClass());
$object->myFunction(new MyClass());
throw new MyException($msg);
function foo() { return new MyClass(); }
$doodad = $x ? new Foo : new Bar;
function returnFn() {
$fn = fn($x) => new MyClass();
}
function returnMatch() {
$match = match($x) {
0 => new MyClass()
}
}
// Issue 3333.
$time2 ??= new \DateTime();
$time3 = $time1 ?? new \DateTime();
$time3 = $time1 ?? $time2 ?? new \DateTime();
function_call($time1 ?? new \DateTime());
$return = function_call($time1 ?? new \DateTime()); // False negative depending on interpretation of the sniff.
function returnViaTernary() {
return ($y == false ) ? ($x === true ? new Foo : new Bar) : new FooBar;
}
function nonAssignmentTernary() {
if (($x ? new Foo() : new Bar) instanceof FooBar) {
// Do something.
}
}
// Test for tokenizer issue #3789.
$a = $b !== null
? match ($c) {
default => 5,
}
: new Foo;
// Intentional parse error. This must be the last test in the file.
function new
?>