# disk-usage-insights/trunk/src/Domain/Snapshot.php

Disk Usage Insights, version trunk. 16 lines.

- Page: https://pluginprobe.com/plugins/disk-usage-insights/trunk/code/src/Domain/Snapshot.php
- Raw: https://pluginprobe.com/plugins/disk-usage-insights/trunk/raw/src/Domain/Snapshot.php
- Modified: 2024-12-19T11:33:52+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/disk-usage-insights/trunk/code/src/Domain/Snapshot.php#L10-L20`.

```php
<?php

namespace Mgleis\DiskUsageInsights\Domain;

class Snapshot {

    const CURRENT_VERSION = "1";

    public string $version = self::CURRENT_VERSION;
    public string $root = '';
    public int $phase = 0;
    public array $wpcorefiles = [];
    public int $collectPhaseFinished = 0;

}

```
