4in1_ws_web/lib/FilesItemSizeTrait.php

6 lines
142 B
PHP

<?php
trait FilesItemSizeTrait {
public int $size;
public function getSize(): ?int { return $this->isFile() ? $this->size : null; }
}