Skip to content

Instantly share code, notes, and snippets.

@Ikke
Created August 26, 2013 08:57
Show Gist options
  • Save Ikke/6339409 to your computer and use it in GitHub Desktop.
Save Ikke/6339409 to your computer and use it in GitHub Desktop.
<?php
interface DoSomething
{
function doSomething();
}
trait Test
{
function doSomething()
{
echo "done something";
}
}
class Implementation implements DoSomething
{
use Test;
}
$test = new Implementation();
$test->doSomething();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment