mirror of
https://github.com/nicoverbruggen/phpmon.git
synced 2025-08-08 04:20:07 +02:00
29 lines
645 B
Swift
29 lines
645 B
Swift
//
|
|
// ValetInteractor.swift
|
|
// PHP Monitor
|
|
//
|
|
// Created by Nico Verbruggen on 21/10/2022.
|
|
// Copyright © 2022 Nico Verbruggen. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
#warning("ValetInteractor needs to be implemented and used")
|
|
class ValetInteractor {
|
|
public static func toggleSecure(site: ValetSite) async throws {
|
|
// TODO
|
|
}
|
|
|
|
public static func toggleSecure(proxy: ValetProxy) async throws {
|
|
// TODO
|
|
}
|
|
|
|
public static func isolate(site: ValetSite, version: PhpVersionNumber) async throws {
|
|
// TODO
|
|
}
|
|
|
|
public static func unlink(site: ValetSite) async throws {
|
|
// TODO
|
|
}
|
|
}
|