1
0
mirror of https://github.com/nicoverbruggen/phpmon.git synced 2025-11-09 21:20:07 +01:00

♻️ Cleanup and comments

This commit is contained in:
2021-12-05 14:31:49 +01:00
parent d37e86ce2c
commit be80d74141
13 changed files with 230 additions and 145 deletions

View File

@@ -18,7 +18,6 @@ class SiteListCell: NSTableCellView
@IBOutlet weak var imageViewType: NSImageView!
@IBOutlet weak var labelDriver: NSTextField!
@IBOutlet weak var labelPhpVersion: NSTextField!
override func draw(_ dirtyRect: NSRect) {
super.draw(dirtyRect)

View File

@@ -128,9 +128,6 @@ class SiteListVC: NSViewController, NSTableViewDelegate, NSTableViewDataSource {
/// Show the current driver
userCell.labelDriver.stringValue = item.driver
/// TODO: Load the correct PHP version (not determined as of yet)
userCell.labelPhpVersion.stringValue = "PHP 8.0"
return userCell
}