/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/php/php-507-143-008/main.php
17 строк
406 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
class PaymentManager { protected $strategies = []; public function addStrategy($name, PaymentStrategy $strategy) { $this->strategies[$name] = $strategy; } public function execute($name, $amount) { if (isset($this->strategies[$name])) { return $this->strategies[$name]->pay($amount); } throw new Exception('Strategy not found'); } }