# timetics/1.0.60/base/file-reader-interface.php

Timetics – Appointment Booking Calendar &amp; Scheduling, version 1.0.60. 19 lines.

- Page: https://pluginprobe.com/plugins/timetics/1.0.60/code/base/file-reader-interface.php
- Raw: https://pluginprobe.com/plugins/timetics/1.0.60/raw/base/file-reader-interface.php
- Modified: 2026-06-28T06:36:30+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/timetics/1.0.60/code/base/file-reader-interface.php#L10-L20`.

```php
<?php
/**
 * Reader Interface
 *
 * @package Timetics
 */
namespace Timetics\Base;

interface FileReaderInterface {
    /**
     * Get data by reading file
     *
     * @param   file  $file  The file that will be read
     *
     * @return  array
     */
    public static function get_data($file);
}

```
