Skip to content

Instantly share code, notes, and snippets.

@ptlis
Created December 18, 2013 12:22
Show Gist options
  • Save ptlis/8021391 to your computer and use it in GitHub Desktop.
Save ptlis/8021391 to your computer and use it in GitHub Desktop.
<?php
interface iFoo {
public function bar();
}
abstract class aFoo {
abstract public function bar();
}
class concFoo extends aFoo implements iFoo{
public function bar() {
return 'baz';
}
}
$foo = new concFoo();
echo $foo->bar().PHP_EOL;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment