Analysis result

Scanned at : 2020-06-05
Analyzed by : Phan target PHP 8.0

Your PHP Code Snippet

                    
<?php
trait T1 {
    function func() {}
}

trait T2 {
    function func() {}
}

class MaClass {
    use T1, T2 {
        func as otherFunc;
    }

    function func() {}
}
                    
                

Like you the result ?

Good jobs, the log is clean!