mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 01:32:22 +01:00
16 lines
252 B
PHP
16 lines
252 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\More\Delegation;
|
|
|
|
/**
|
|
* Class JuniorDeveloper
|
|
* @package DesignPatterns\Delegation
|
|
*/
|
|
class JuniorDeveloper
|
|
{
|
|
public function writeBadCode()
|
|
{
|
|
return "Some junior developer generated code...";
|
|
}
|
|
}
|