mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-23 17:22:41 +01:00
12 lines
181 B
PHP
12 lines
181 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\More\Delegation;
|
|
|
|
class JuniorDeveloper
|
|
{
|
|
public function writeBadCode()
|
|
{
|
|
return 'Some junior developer generated code...';
|
|
}
|
|
}
|