Skip to content

Instantly share code, notes, and snippets.

@andersonfraga
Last active December 19, 2015 01:09
Show Gist options
  • Save andersonfraga/5873802 to your computer and use it in GitHub Desktop.
Save andersonfraga/5873802 to your computer and use it in GitHub Desktop.
<?php
class Teste {
public $outro;
function __construct($outraclasse) {
$this->outro = $outraclasse;
}
}
class Loader {
function helper() {
echo 'opa!';
}
}
$loader = new Loader();
$novo = new Teste($loader);
$novo->outro->helper();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment