Преимущества использования шаблона стратегии в php
Я не могу понять, какие преимущества предлагает шаблон стратегии. См. Пример ниже. //Implementation without the strategy pattern class Registry { public function Func1(){ echo 'called function 1'; } public function Func2(){ echo 'called function 2'; } } $client = new Registry(); $client->Func1(); $client->Func2(); //Implementation with strategy pattern interface registry { public function printMsg(); } class […]