mirror of
https://github.com/nicoverbruggen/phpmon.git
synced 2025-08-08 04:20:07 +02:00
22 lines
367 B
Swift
22 lines
367 B
Swift
//
|
|
// ValetInteractable.swift
|
|
// PHP Monitor
|
|
//
|
|
// Created by Nico Verbruggen on 21/10/2022.
|
|
// Copyright © 2022 Nico Verbruggen. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
protocol ValetInteractable {
|
|
|
|
func secure() async throws
|
|
|
|
func unsecure() async throws
|
|
|
|
func isolate(version: PhpVersionNumber) async throws
|
|
|
|
func unlink() async throws
|
|
|
|
}
|