Files
DesignPatternsPHP/More/Delegation/Usage.php
Antonio Spinelli e59d70a0ac start a restructure
2014-03-21 18:03:45 -03:00

10 lines
243 B
PHP

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