From 4256eae442d6533785d3a479d99e277e98f1bd53 Mon Sep 17 00:00:00 2001 From: Nico Verbruggen Date: Mon, 18 Oct 2021 18:48:40 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=8C=20CS?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- phpmon/AppDelegate.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/phpmon/AppDelegate.swift b/phpmon/AppDelegate.swift index 3f52166..d0d3839 100644 --- a/phpmon/AppDelegate.swift +++ b/phpmon/AppDelegate.swift @@ -18,25 +18,25 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSUserNotificationCenterDele (invoked by PHP Monitor) shell commands. It is used to invoke all commands in this application. */ - let sharedShell : Shell + let sharedShell: Shell /** The App singleton contains information about the state of the application and global variables. */ - let state : App + let state: App /** The MainMenu singleton is responsible for rendering the menu bar item and its menu, as well as its actions. */ - let menu : MainMenu + let menu: MainMenu /** The paths singleton that determines where Homebrew is installed, and where to look for binaries. */ - let paths : Paths + let paths: Paths // MARK: - Initializer