<?php

trait foo {

}

interface MyInterface {
    use foo;

    public function b();

}
?>