PluginProbe
Disk Usage Insights / 1.3
Disk Usage Insights v1.3
trunk 1.0 1.10 1.11 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9
disk-usage-insights / src / Domain / Snapshot.php

Snapshot.php in Disk Usage Insights 1.3, at src/Domain/Snapshot.php

16 lines 293 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Mgleis\DiskUsageInsights\Domain;
4
5 class Snapshot {
6
7 const CURRENT_VERSION = "1";
8
9 public string $version = self::CURRENT_VERSION;
10 public string $root = '';
11 public int $phase = 0;
12 public array $wpcorefiles = [];
13 public int $collectPhaseFinished = 0;
14
15 }
16