# user-access-manager/2.3.14/src/File/FileObject.php

User Access Manager, version 2.3.14. 37 lines.

- Page: https://pluginprobe.com/plugins/user-access-manager/2.3.14/code/src/File/FileObject.php
- Raw: https://pluginprobe.com/plugins/user-access-manager/2.3.14/raw/src/File/FileObject.php
- Modified: 2026-07-21T12:49:02+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/user-access-manager/2.3.14/code/src/File/FileObject.php#L10-L20`.

```php
<?php

declare(strict_types=1);

namespace UserAccessManager\File;

class FileObject
{
    public function __construct(
        private int|string $id,
        private string $type,
        private string $file,
        private bool $isImage = false
    ) {
    }

    public function getId(): int|string
    {
        return $this->id;
    }

    public function getType(): string
    {
        return $this->type;
    }

    public function getFile(): string
    {
        return $this->file;
    }

    public function isImage(): bool
    {
        return $this->isImage;
    }
}

```
