From e945b5fe94600fa4a746da4f41c4034edcd4c93f Mon Sep 17 00:00:00 2001 From: Nico Verbruggen Date: Wed, 9 Feb 2022 21:32:55 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=8C=20Add=20`version`=20to=20PhpSwitch?= =?UTF-8?q?erDelegate?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- phpmon/Common/PHP/Switcher/PhpSwitcher.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpmon/Common/PHP/Switcher/PhpSwitcher.swift b/phpmon/Common/PHP/Switcher/PhpSwitcher.swift index 324bcde..86856e1 100644 --- a/phpmon/Common/PHP/Switcher/PhpSwitcher.swift +++ b/phpmon/Common/PHP/Switcher/PhpSwitcher.swift @@ -10,9 +10,9 @@ import Foundation protocol PhpSwitcherDelegate: AnyObject { - func switcherDidStartSwitching(to: String) + func switcherDidStartSwitching(to version: String) - func switcherDidCompleteSwitch(to: String) + func switcherDidCompleteSwitch(to version: String) }