File: trait3.php

package info (click to toggle)
phpab 1.29.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 852 kB
  • sloc: php: 3,467; xml: 162; makefile: 28
file content (18 lines) | stat: -rw-r--r-- 209 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

trait trait1 {
    public function demo() {}
}

class test {

    use trait1;

    protected function foo() {
        $y = 123;
        $x = function() use ($y) {
            echo $y;
        }
    }

}