Skip to content

Instantly share code, notes, and snippets.

@raphaeldealmeida
Created February 15, 2012 21:24
Show Gist options
  • Save raphaeldealmeida/1839085 to your computer and use it in GitHub Desktop.
Save raphaeldealmeida/1839085 to your computer and use it in GitHub Desktop.
Composição horizontal PHP 5.4
<?php
trait SomeClass{
public function add($x, $y) { return $x + $y; }
}
class TestComponent {
use SomeClass;
}
$test_comp = new TestComponent();
$test_comp->add(2, 5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment