mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-23 17:22:41 +01:00
10 lines
248 B
PHP
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();
|