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