Files
DesignPatternsPHP/Delegation/Usage.php
2014-03-02 21:54:04 +04: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();