PluginProbe
Remote Website Management by Watchful / trunk
Remote Website Management by Watchful vtrunk
v2.0.17 v2.0.16 v2.0.15 v2.0.14 v2.0.13 v2.0.12 v2.0.11 trunk v1.2.11 v1.2.12 v1.2.13 v1.2.14 v1.2.17 v1.2.19 v1.2.20 v1.2.9 v1.3.0 v1.3.1 v1.3.2 v1.4.1 v1.4.10 v1.4.11 v1.4.12 v1.4.2 v1.4.3 All 72 releases
watchful / lib / Model / FileEnumerationStep.php

FileEnumerationStep.php in Remote Website Management by Watchful trunk, at lib/Model/FileEnumerationStep.php

36 lines 788 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Watchful\Model;
4
5 use JsonSerializable;
6
7 class FileEnumerationStep implements JsonSerializable
8 {
9 /** @var bool */
10 public $completed = false;
11 /** @var int */
12 public $current_offset = 0;
13 /** @var int */
14 public $size = 0;
15 /** @var int */
16 public $total_files = 0;
17 /** @var int */
18 public $changed_files = 0;
19 /** @var int */
20 public $deleted_files = 0;
21
22
23 public function jsonSerialize(): array
24 {
25 return [
26 'completed' => $this->completed,
27 'current_offset' => $this->current_offset,
28 'size' => $this->size,
29 'total_files' => $this->total_files,
30 'changed_files' => $this->changed_files,
31 'deleted_files' => $this->deleted_files,
32 ];
33 }
34 }
35
36