summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/private/files/fileinfo.php4
-rw-r--r--lib/public/files/fileinfo.php20
2 files changed, 7 insertions, 17 deletions
diff --git a/lib/private/files/fileinfo.php b/lib/private/files/fileinfo.php
index 24d99627aaf..8e9b6a8b72c 100644
--- a/lib/private/files/fileinfo.php
+++ b/lib/private/files/fileinfo.php
@@ -1,6 +1,6 @@
<?php
/**
- * Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
+ * Copyright (c) 2014 Robin Appelman <icewind@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
@@ -8,7 +8,7 @@
namespace OC\Files;
-class FileInfo implements \OCP\Files\FileInfo {
+class FileInfo implements \OCP\Files\FileInfo, \ArrayAccess, \JsonSerializable {
/**
* @var array $data
*/
diff --git a/lib/public/files/fileinfo.php b/lib/public/files/fileinfo.php
index 09c194fe96d..cbe216023da 100644
--- a/lib/public/files/fileinfo.php
+++ b/lib/public/files/fileinfo.php
@@ -1,26 +1,16 @@
<?php
/**
- * Created by PhpStorm.
- * User: robin
- * Date: 1/13/14
- * Time: 1:45 PM
+ * Copyright (c) 2014 Robin Appelman <icewind@owncloud.com>
+ * This file is licensed under the Affero General Public License version 3 or
+ * later.
+ * See the COPYING-README file.
*/
namespace OCP\Files;
-interface FileInfo extends \ArrayAccess, \JsonSerializable {
+interface FileInfo {
const TYPE_FILE = 'file';
const TYPE_FOLDER = 'folder';
- public function offsetSet($offset, $value);
-
- public function offsetGet($offset);
-
- public function offsetUnset($offset);
-
- public function offsetExists($offset);
-
- public function jsonSerialize();
-
/**
* Get the Etag of the file or folder
*