# wpvr/9.0.2/src/Api/Contracts/RepositoryInterface.php

WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress, version 9.0.2. 9 lines.

- Page: https://pluginprobe.com/plugins/wpvr/9.0.2/code/src/Api/Contracts/RepositoryInterface.php
- Raw: https://pluginprobe.com/plugins/wpvr/9.0.2/raw/src/Api/Contracts/RepositoryInterface.php
- Modified: 2026-08-20T11:07:58+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/wpvr/9.0.2/code/src/Api/Contracts/RepositoryInterface.php#L10-L20`.

```php
<?php

namespace RexTheme\WPVR\Api\Contracts;

interface RepositoryInterface {
    public function find( int $id ): array;
    public function save( int $id, array $data ): bool;
}

```
