Browse Source
Doc: Fix phpDoc issues
Signed-off-by: Julius Härtl <jus@bitgrid.net>
pull/6864/head
Julius Härtl
9 years ago
No known key found for this signature in database
GPG Key ID: 4C614C6ED2CDE6DF
14 changed files with
12 additions and
15 deletions
-
lib/private/App/AppManager.php
-
lib/private/AppFramework/Http.php
-
lib/private/Command/QueueBus.php
-
lib/private/Files/FileInfo.php
-
lib/private/Group/Manager.php
-
lib/private/Installer.php
-
lib/private/Setup.php
-
lib/private/Share20/Manager.php
-
lib/private/Tags.php
-
lib/private/legacy/image.php
-
lib/private/legacy/template/functions.php
-
lib/public/AppFramework/Http/DataDisplayResponse.php
-
lib/public/Files/FileInfo.php
-
lib/public/Util.php
|
|
|
@ -4,7 +4,7 @@ |
|
|
|
* |
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de> |
|
|
|
* @author Bjoern Schiessle <bjoern@schiessle.org> |
|
|
|
* @author Christoph Schaefer <christophł@wolkesicher.de> |
|
|
|
* @author Christoph Schaefer <christoph@wolkesicher.de> |
|
|
|
* @author Christoph Wurst <christoph@owncloud.com> |
|
|
|
* @author Joas Schilling <coding@schilljs.com> |
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch> |
|
|
|
|
|
|
|
@ -111,7 +111,7 @@ class Http extends BaseHttp { |
|
|
|
|
|
|
|
/** |
|
|
|
* Gets the correct header |
|
|
|
* @param Http::CONSTANT $status the constant from the Http class |
|
|
|
* @param int Http::CONSTANT $status the constant from the Http class |
|
|
|
* @param \DateTime $lastModified formatted last modified date |
|
|
|
* @param string $ETag the etag |
|
|
|
* @return string |
|
|
|
|
|
|
|
@ -27,7 +27,7 @@ use OCP\Command\ICommand; |
|
|
|
|
|
|
|
class QueueBus implements IBus { |
|
|
|
/** |
|
|
|
* @var (ICommand|callable)[] |
|
|
|
* @var ICommand[]|callable[] |
|
|
|
*/ |
|
|
|
private $queue = []; |
|
|
|
|
|
|
|
|
|
|
|
@ -232,7 +232,7 @@ class FileInfo implements \OCP\Files\FileInfo, \ArrayAccess { |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return \OCP\Files\FileInfo::TYPE_FILE|\OCP\Files\FileInfo::TYPE_FOLDER |
|
|
|
* @return string \OCP\Files\FileInfo::TYPE_FILE|\OCP\Files\FileInfo::TYPE_FOLDER |
|
|
|
*/ |
|
|
|
public function getType() { |
|
|
|
if (!isset($this->data['type'])) { |
|
|
|
|
|
|
|
@ -15,14 +15,13 @@ |
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl> |
|
|
|
* @author Roman Kreisel <mail@romankreisel.de> |
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu> |
|
|
|
* @author voxsim <Simon Vocella> |
|
|
|
* @author Simon Vocella |
|
|
|
* |
|
|
|
* @license AGPL-3.0 |
|
|
|
* |
|
|
|
* This code is free software: you can redistribute it and/or modify |
|
|
|
* it under the terms of the GNU Affero General Public License, version 3, |
|
|
|
* as published by the Free Software Foundation. |
|
|
|
* |
|
|
|
* This program is distributed in the hope that it will be useful, |
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
|
|
|
|
|
|
@ -19,7 +19,6 @@ |
|
|
|
* @author Morris Jobke <hey@morrisjobke.de> |
|
|
|
* @author Robin Appelman <robin@icewind.nl> |
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl> |
|
|
|
* @author root <root@oc.(none)> |
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu> |
|
|
|
* @author Thomas Tanghus <thomas@tanghus.net> |
|
|
|
* |
|
|
|
|
|
|
|
@ -2,7 +2,6 @@ |
|
|
|
/** |
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc. |
|
|
|
* |
|
|
|
* @author Administrator <Administrator@WINDOWS-2012> |
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de> |
|
|
|
* @author Bart Visscher <bartv@thisnet.nl> |
|
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com> |
|
|
|
|
|
|
|
@ -1395,7 +1395,7 @@ class Manager implements IManager { |
|
|
|
|
|
|
|
/** |
|
|
|
* Create a new share |
|
|
|
* @return \OCP\Share\IShare; |
|
|
|
* @return \OCP\Share\IShare |
|
|
|
*/ |
|
|
|
public function newShare() { |
|
|
|
return new \OC\Share20\Share($this->rootFolder, $this->userManager); |
|
|
|
|
|
|
|
@ -140,7 +140,7 @@ class Tags implements \OCP\ITags { |
|
|
|
/** |
|
|
|
* Check if any tags are saved for this type and user. |
|
|
|
* |
|
|
|
* @return boolean. |
|
|
|
* @return boolean |
|
|
|
*/ |
|
|
|
public function isEmpty() { |
|
|
|
return count($this->tags) === 0; |
|
|
|
|
|
|
|
@ -431,7 +431,7 @@ class OC_Image implements \OCP\IImage { |
|
|
|
* (I'm open for suggestions on better method name ;) |
|
|
|
* Fixes orientation based on EXIF data. |
|
|
|
* |
|
|
|
* @return bool. |
|
|
|
* @return bool |
|
|
|
*/ |
|
|
|
public function fixOrientation() { |
|
|
|
$o = $this->getOrientation(); |
|
|
|
|
|
|
|
@ -278,7 +278,7 @@ function human_file_size( $bytes ) { |
|
|
|
/** |
|
|
|
* Strips the timestamp of its time value |
|
|
|
* @param int $timestamp UNIX timestamp to strip |
|
|
|
* @return $timestamp without time value |
|
|
|
* @return int timestamp without time value |
|
|
|
*/ |
|
|
|
function strip_time($timestamp){ |
|
|
|
$date = new \DateTime("@{$timestamp}"); |
|
|
|
|
|
|
|
@ -35,7 +35,7 @@ class DataDisplayResponse extends Response { |
|
|
|
|
|
|
|
/** |
|
|
|
* response data |
|
|
|
* @var string; |
|
|
|
* @var string |
|
|
|
*/ |
|
|
|
protected $data; |
|
|
|
|
|
|
|
|
|
|
|
@ -174,7 +174,7 @@ interface FileInfo { |
|
|
|
/** |
|
|
|
* Check whether this is a file or a folder |
|
|
|
* |
|
|
|
* @return \OCP\Files\FileInfo::TYPE_FILE|\OCP\Files\FileInfo::TYPE_FOLDER |
|
|
|
* @return string \OCP\Files\FileInfo::TYPE_FILE|\OCP\Files\FileInfo::TYPE_FOLDER |
|
|
|
* @since 7.0.0 |
|
|
|
*/ |
|
|
|
public function getType(); |
|
|
|
|
|
|
|
@ -670,7 +670,7 @@ class Util { |
|
|
|
* Compare two strings to provide a natural sort |
|
|
|
* @param string $a first string to compare |
|
|
|
* @param string $b second string to compare |
|
|
|
* @return -1 if $b comes before $a, 1 if $a comes before $b |
|
|
|
* @return int -1 if $b comes before $a, 1 if $a comes before $b |
|
|
|
* or 0 if the strings are identical |
|
|
|
* @since 7.0.0 |
|
|
|
*/ |
|
|
|
|