mirror of
https://github.com/nicoverbruggen/phpmon.git
synced 2026-03-27 22:40:08 +01:00
- This allows existing unit tests to work - But we can also test command tracking in the future
16 lines
420 B
Swift
16 lines
420 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, commandTracking: Bool = true) -> Container {
|
|
let container = Container()
|
|
container.bind(coreOnly: minimal, commandTracking: commandTracking)
|
|
return container
|
|
}
|
|
}
|