Lines Matching refs:this
2 Closure $this unbinding deprecation
8 echo "instance scoped, non-static, \$this used\n";
10 var_dump($this);
13 echo "instance scoped, static, \$this used\n";
15 var_dump($this);
18 echo "instance scoped, non-static, \$this not used\n";
26 echo "static scoped, non-static, \$this used\n";
28 var_dump($this);
31 echo "static scoped, static, \$this used\n";
33 var_dump($this);
36 echo "static scoped, static, \$this not used\n";
49 instance scoped, non-static, $this used
51 Warning: Cannot unbind $this of closure using $this in %s on line %d
52 instance scoped, static, $this used
53 instance scoped, non-static, $this not used
54 static scoped, non-static, $this used
55 static scoped, static, $this used
56 static scoped, static, $this not used