Files
DesignPatternsPHP/More/Delegation/Usage.php
2014-04-16 18:12:52 -03:00

10 lines
248 B
PHP

<?php
namespace DesignPatterns\More\Delegation;
// instantiate TeamLead and appoint to assistants JuniorDeveloper
$teamLead = new TeamLead(new JuniorDeveloper());
// team lead delegate write code to junior developer
echo $teamLead->writeCode();