Skip to content

Instantly share code, notes, and snippets.

@noname007
Last active November 21, 2018 05:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save noname007/1dbdcf49abc3c73f062b0d97297495ee to your computer and use it in GitHub Desktop.
Save noname007/1dbdcf49abc3c73f062b0d97297495ee to your computer and use it in GitHub Desktop.
<?php
trait A
{
public function b()
{
echo __METHOD__;
}
}
class C
{
use A;
public function b()
{
echo __METHOD__;
A::b();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment