mirror of
https://github.com/nicoverbruggen/phpmon.git
synced 2025-12-21 03:10:06 +01:00
16 lines
356 B
Swift
16 lines
356 B
Swift
//
|
|
// Container+Real.swift
|
|
// PHP Monitor
|
|
//
|
|
// Created by Nico Verbruggen on 16/10/2025.
|
|
// Copyright © 2025 Nico Verbruggen. All rights reserved.
|
|
//
|
|
|
|
extension Container {
|
|
public static func real(minimal: Bool = false) -> Container {
|
|
let container = Container()
|
|
container.bind(coreOnly: minimal)
|
|
return container
|
|
}
|
|
}
|