fork(1) download
  1. <?php
  2. interface Authenticable {
  3. // métodos
  4. }
  5. interface Model {
  6. // métodos
  7. }
  8. class Person implements Authenticable, Model {
  9. // métodos
  10. }
  11. $pessoa = new Person();
  12.  
Success #stdin #stdout 0.01s 52488KB
stdin
Standard input is empty
stdout
Array
(
    [Authenticable] => Authenticable
    [Model] => Model
)