Some phpstorm inspection fixes

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
pull/5840/head
Roeland Jago Douma 9 years ago
parent 9a151056d0
commit 361d2badd8
No known key found for this signature in database
GPG Key ID: F941078878347C0C
  1. 2
      lib/public/AppFramework/Http/DataDisplayResponse.php
  2. 2
      lib/public/AppFramework/Http/ICallbackResponse.php
  3. 10
      lib/public/AppFramework/IApi.php
  4. 14
      lib/public/AppFramework/IAppContainer.php
  5. 239
      lib/public/Contacts/IManager.php
  6. 4
      lib/public/DB.php
  7. 14
      lib/public/Files.php
  8. 9
      lib/public/Files/ObjectStore/IObjectStore.php
  9. 2
      lib/public/JSON.php
  10. 2
      lib/public/Search/PagedProvider.php
  11. 2
      lib/public/Security/ISecureRandom.php
  12. 28
      lib/public/Template.php
  13. 32
      lib/public/Util.php

@ -46,7 +46,7 @@ class DataDisplayResponse extends Response {
* @param array $headers additional key value based headers
* @since 8.1.0
*/
public function __construct($data="", $statusCode=Http::STATUS_OK,
public function __construct($data='', $statusCode=Http::STATUS_OK,
$headers=[]) {
$this->data = $data;
$this->setStatus($statusCode);

@ -39,6 +39,6 @@ interface ICallbackResponse {
* @param IOutput $output a small wrapper that handles output
* @since 8.1.0
*/
function callback(IOutput $output);
public function callback(IOutput $output);
}

@ -43,7 +43,7 @@ interface IApi {
* @return string the user id of the current user
* @deprecated 8.0.0 Use \OC::$server->getUserSession()->getUser()->getUID()
*/
function getUserId();
public function getUserId();
/**
@ -53,7 +53,7 @@ interface IApi {
* @param string $appName the name of the app, defaults to the current one
* @return void
*/
function addScript($scriptName, $appName = null);
public function addScript($scriptName, $appName = null);
/**
@ -63,7 +63,7 @@ interface IApi {
* @param string $appName the name of the app, defaults to the current one
* @return void
*/
function addStyle($styleName, $appName = null);
public function addStyle($styleName, $appName = null);
/**
@ -72,7 +72,7 @@ interface IApi {
* @param string $name the name of the file without the suffix
* @return void
*/
function add3rdPartyScript($name);
public function add3rdPartyScript($name);
/**
@ -81,7 +81,7 @@ interface IApi {
* @param string $name the name of the file without the suffix
* @return void
*/
function add3rdPartyStyle($name);
public function add3rdPartyStyle($name);
/**

@ -42,41 +42,41 @@ interface IAppContainer extends IContainer {
* @return string the name of your application
* @since 6.0.0
*/
function getAppName();
public function getAppName();
/**
* @deprecated 8.0.0 implements only deprecated methods
* @return IApi
* @since 6.0.0
*/
function getCoreApi();
public function getCoreApi();
/**
* @return \OCP\IServerContainer
* @since 6.0.0
*/
function getServer();
public function getServer();
/**
* @param string $middleWare
* @return boolean
* @since 6.0.0
*/
function registerMiddleWare($middleWare);
public function registerMiddleWare($middleWare);
/**
* @deprecated 8.0.0 use IUserSession->isLoggedIn()
* @return boolean
* @since 6.0.0
*/
function isLoggedIn();
public function isLoggedIn();
/**
* @deprecated 8.0.0 use IGroupManager->isAdmin($userId)
* @return boolean
* @since 6.0.0
*/
function isAdminUser();
public function isAdminUser();
/**
* @deprecated 8.0.0 use the ILogger instead
@ -85,7 +85,7 @@ interface IAppContainer extends IContainer {
* @return mixed
* @since 6.0.0
*/
function log($message, $level);
public function log($message, $level);
/**
* Register a capability

@ -32,140 +32,139 @@
// use OCP namespace for all classes that are considered public.
// This means that they should be used by apps instead of the internal ownCloud classes
namespace OCP\Contacts {
namespace OCP\Contacts;
/**
* This class provides access to the contacts app. Use this class exclusively if you want to access contacts.
*
* Contacts in general will be expressed as an array of key-value-pairs.
* The keys will match the property names defined in https://tools.ietf.org/html/rfc2426#section-1
*
* Proposed workflow for working with contacts:
* - search for the contacts
* - manipulate the results array
* - createOrUpdate will save the given contacts overwriting the existing data
*
* For updating it is mandatory to keep the id.
* Without an id a new contact will be created.
*
* @since 6.0.0
*/
interface IManager {
/**
* This class provides access to the contacts app. Use this class exclusively if you want to access contacts.
* This function is used to search and find contacts within the users address books.
* In case $pattern is empty all contacts will be returned.
*
* Example:
* Following function shows how to search for contacts for the name and the email address.
*
* public static function getMatchingRecipient($term) {
* $cm = \OC::$server->getContactsManager();
* // The API is not active -> nothing to do
* if (!$cm->isEnabled()) {
* return array();
* }
*
* Contacts in general will be expressed as an array of key-value-pairs.
* The keys will match the property names defined in https://tools.ietf.org/html/rfc2426#section-1
* $result = $cm->search($term, array('FN', 'EMAIL'));
* $receivers = array();
* foreach ($result as $r) {
* $id = $r['id'];
* $fn = $r['FN'];
* $email = $r['EMAIL'];
* if (!is_array($email)) {
* $email = array($email);
* }
*
* Proposed workflow for working with contacts:
* - search for the contacts
* - manipulate the results array
* - createOrUpdate will save the given contacts overwriting the existing data
* // loop through all email addresses of this contact
* foreach ($email as $e) {
* $displayName = $fn . " <$e>";
* $receivers[] = array(
* 'id' => $id,
* 'label' => $displayName,
* 'value' => $displayName);
* }
* }
*
* For updating it is mandatory to keep the id.
* Without an id a new contact will be created.
* return $receivers;
* }
*
*
* @param string $pattern which should match within the $searchProperties
* @param array $searchProperties defines the properties within the query pattern should match
* @param array $options - for future use. One should always have options!
* @return array an array of contacts which are arrays of key-value-pairs
* @since 6.0.0
*/
interface IManager {
/**
* This function is used to search and find contacts within the users address books.
* In case $pattern is empty all contacts will be returned.
*
* Example:
* Following function shows how to search for contacts for the name and the email address.
*
* public static function getMatchingRecipient($term) {
* $cm = \OC::$server->getContactsManager();
* // The API is not active -> nothing to do
* if (!$cm->isEnabled()) {
* return array();
* }
*
* $result = $cm->search($term, array('FN', 'EMAIL'));
* $receivers = array();
* foreach ($result as $r) {
* $id = $r['id'];
* $fn = $r['FN'];
* $email = $r['EMAIL'];
* if (!is_array($email)) {
* $email = array($email);
* }
*
* // loop through all email addresses of this contact
* foreach ($email as $e) {
* $displayName = $fn . " <$e>";
* $receivers[] = array(
* 'id' => $id,
* 'label' => $displayName,
* 'value' => $displayName);
* }
* }
*
* return $receivers;
* }
*
*
* @param string $pattern which should match within the $searchProperties
* @param array $searchProperties defines the properties within the query pattern should match
* @param array $options - for future use. One should always have options!
* @return array an array of contacts which are arrays of key-value-pairs
* @since 6.0.0
*/
function search($pattern, $searchProperties = array(), $options = array());
public function search($pattern, $searchProperties = array(), $options = array());
/**
* This function can be used to delete the contact identified by the given id
*
* @param object $id the unique identifier to a contact
* @param string $address_book_key identifier of the address book in which the contact shall be deleted
* @return bool successful or not
* @since 6.0.0
*/
function delete($id, $address_book_key);
/**
* This function can be used to delete the contact identified by the given id
*
* @param object $id the unique identifier to a contact
* @param string $address_book_key identifier of the address book in which the contact shall be deleted
* @return bool successful or not
* @since 6.0.0
*/
public function delete($id, $address_book_key);
/**
* This function is used to create a new contact if 'id' is not given or not present.
* Otherwise the contact will be updated by replacing the entire data set.
*
* @param array $properties this array if key-value-pairs defines a contact
* @param string $address_book_key identifier of the address book in which the contact shall be created or updated
* @return array an array representing the contact just created or updated
* @since 6.0.0
*/
function createOrUpdate($properties, $address_book_key);
/**
* This function is used to create a new contact if 'id' is not given or not present.
* Otherwise the contact will be updated by replacing the entire data set.
*
* @param array $properties this array if key-value-pairs defines a contact
* @param string $address_book_key identifier of the address book in which the contact shall be created or updated
* @return array an array representing the contact just created or updated
* @since 6.0.0
*/
public function createOrUpdate($properties, $address_book_key);
/**
* Check if contacts are available (e.g. contacts app enabled)
*
* @return bool true if enabled, false if not
* @since 6.0.0
*/
function isEnabled();
/**
* Check if contacts are available (e.g. contacts app enabled)
*
* @return bool true if enabled, false if not
* @since 6.0.0
*/
public function isEnabled();
/**
* Registers an address book
*
* @param \OCP\IAddressBook $address_book
* @return void
* @since 6.0.0
*/
function registerAddressBook(\OCP\IAddressBook $address_book);
/**
* Registers an address book
*
* @param \OCP\IAddressBook $address_book
* @return void
* @since 6.0.0
*/
public function registerAddressBook(\OCP\IAddressBook $address_book);
/**
* Unregisters an address book
*
* @param \OCP\IAddressBook $address_book
* @return void
* @since 6.0.0
*/
function unregisterAddressBook(\OCP\IAddressBook $address_book);
/**
* Unregisters an address book
*
* @param \OCP\IAddressBook $address_book
* @return void
* @since 6.0.0
*/
public function unregisterAddressBook(\OCP\IAddressBook $address_book);
/**
* In order to improve lazy loading a closure can be registered which will be called in case
* address books are actually requested
*
* @param \Closure $callable
* @return void
* @since 6.0.0
*/
function register(\Closure $callable);
/**
* In order to improve lazy loading a closure can be registered which will be called in case
* address books are actually requested
*
* @param \Closure $callable
* @return void
* @since 6.0.0
*/
public function register(\Closure $callable);
/**
* @return array
* @since 6.0.0
*/
function getAddressBooks();
/**
* @return array
* @since 6.0.0
*/
public function getAddressBooks();
/**
* removes all registered address book instances
* @return void
* @since 6.0.0
*/
function clear();
}
/**
* removes all registered address book instances
* @return void
* @since 6.0.0
*/
public function clear();
}

@ -57,7 +57,7 @@ class DB {
* @since 4.5.0
*/
static public function prepare( $query, $limit=null, $offset=null ) {
return(\OC_DB::prepare($query, $limit, $offset));
return \OC_DB::prepare($query, $limit, $offset);
}
/**
@ -117,7 +117,7 @@ class DB {
* @since 8.0.0
*/
public static function rollback() {
\OC::$server->getDatabaseConnection()->rollback();
\OC::$server->getDatabaseConnection()->rollBack();
}
/**

@ -50,7 +50,7 @@ class Files {
* @return bool
* @since 5.0.0
*/
static function rmdirr( $dir ) {
static public function rmdirr( $dir ) {
return \OC_Helper::rmdirr( $dir );
}
@ -61,7 +61,7 @@ class Files {
* does NOT work for ownClouds filesystem, use OC_FileSystem::getMimeType instead
* @since 5.0.0
*/
static function getMimeType( $path ) {
static public function getMimeType( $path ) {
return \OC::$server->getMimeTypeDetector()->detect($path);
}
@ -71,8 +71,8 @@ class Files {
* @return array
* @since 6.0.0
*/
static public function searchByMime( $mimetype ) {
return(\OC\Files\Filesystem::searchByMime( $mimetype ));
static public function searchByMime($mimetype) {
return \OC\Files\Filesystem::searchByMime($mimetype);
}
/**
@ -119,8 +119,8 @@ class Files {
* @return string
* @since 5.0.0
*/
public static function buildNotExistingFileName( $path, $filename ) {
return(\OC_Helper::buildNotExistingFileName( $path, $filename ));
public static function buildNotExistingFileName($path, $filename) {
return \OC_Helper::buildNotExistingFileName($path, $filename);
}
/**
@ -130,7 +130,7 @@ class Files {
* @return \OC\Files\View
* @since 5.0.0
*/
public static function getStorage( $app ) {
public static function getStorage($app) {
return \OC_App::getStorage( $app );
}
}

@ -34,7 +34,7 @@ interface IObjectStore {
* @return string the container or bucket name where objects are stored
* @since 7.0.0
*/
function getStorageId();
public function getStorageId();
/**
* @param string $urn the unified resource name used to identify the object
@ -42,7 +42,7 @@ interface IObjectStore {
* @throws \Exception when something goes wrong, message will be logged
* @since 7.0.0
*/
function readObject($urn);
public function readObject($urn);
/**
* @param string $urn the unified resource name used to identify the object
@ -50,7 +50,7 @@ interface IObjectStore {
* @throws \Exception when something goes wrong, message will be logged
* @since 7.0.0
*/
function writeObject($urn, $stream);
public function writeObject($urn, $stream);
/**
* @param string $urn the unified resource name used to identify the object
@ -58,6 +58,5 @@ interface IObjectStore {
* @throws \Exception when something goes wrong, message will be logged
* @since 7.0.0
*/
function deleteObject($urn);
public function deleteObject($urn);
}

@ -95,7 +95,7 @@ class JSON {
* Send json success msg
*
* Return a json success message with optional extra data.
* @see OCP\JSON::error() for the format to use.
* @see \OCP\JSON::error() for the format to use.
*
* @param array $data The data to use
* @return string json formatted string.

@ -42,7 +42,7 @@ abstract class PagedProvider extends Provider {
* @since 8.0.0
*/
public function __construct($options) {
$this->options = $options;
parent::__construct($options);
}
/**

@ -49,7 +49,7 @@ interface ISecureRandom {
* generate human readable random strings. Lower- and upper-case characters and digits
* are included. Characters which are ambiguous are excluded, such as I, l, and 1 and so on.
*/
const CHAR_HUMAN_READABLE = "abcdefgijkmnopqrstwxyzABCDEFGHJKLMNPQRSTWXYZ23456789";
const CHAR_HUMAN_READABLE = 'abcdefgijkmnopqrstwxyzABCDEFGHJKLMNPQRSTWXYZ23456789';
/**
* Convenience method to get a low strength random number generator.

@ -49,8 +49,8 @@ namespace OCP;
* @see \OCP\IURLGenerator::imagePath
* @deprecated 8.0.0 Use \OCP\Template::image_path() instead
*/
function image_path( $app, $image ) {
return(\image_path( $app, $image ));
function image_path($app, $image) {
return \image_path($app, $image);
}
@ -60,8 +60,8 @@ function image_path( $app, $image ) {
* @return string to the image of this file type.
* @deprecated 8.0.0 Use \OCP\Template::mimetype_icon() instead
*/
function mimetype_icon( $mimetype ) {
return(\mimetype_icon( $mimetype ));
function mimetype_icon($mimetype) {
return \mimetype_icon($mimetype);
}
/**
@ -70,8 +70,8 @@ function mimetype_icon( $mimetype ) {
* @return string to the preview of the image
* @deprecated 8.0.0 Use \OCP\Template::preview_icon() instead
*/
function preview_icon( $path ) {
return(\preview_icon( $path ));
function preview_icon($path) {
return \preview_icon($path);
}
/**
@ -82,8 +82,8 @@ function preview_icon( $path ) {
* @return string link to the preview
* @deprecated 8.0.0 Use \OCP\Template::publicPreview_icon() instead
*/
function publicPreview_icon ( $path, $token ) {
return(\publicPreview_icon( $path, $token ));
function publicPreview_icon($path, $token) {
return \publicPreview_icon($path, $token);
}
/**
@ -93,8 +93,8 @@ function publicPreview_icon ( $path, $token ) {
* @return string size as string
* @deprecated 8.0.0 Use \OCP\Template::human_file_size() instead
*/
function human_file_size( $bytes ) {
return(\human_file_size( $bytes ));
function human_file_size($bytes) {
return \human_file_size($bytes);
}
@ -106,8 +106,8 @@ function human_file_size( $bytes ) {
*
* @deprecated 8.0.0 Use \OCP\Template::relative_modified_date() instead
*/
function relative_modified_date( $timestamp, $dateOnly = false ) {
return(\relative_modified_date($timestamp, null, $dateOnly));
function relative_modified_date($timestamp, $dateOnly = false) {
return \relative_modified_date($timestamp, null, $dateOnly);
}
@ -118,7 +118,7 @@ function relative_modified_date( $timestamp, $dateOnly = false ) {
* @deprecated 8.0.0 Use \OCP\Template::human_file_size() instead
*/
function simple_file_size($bytes) {
return(\human_file_size($bytes));
return \human_file_size($bytes);
}
@ -131,7 +131,7 @@ function simple_file_size($bytes) {
* @deprecated 8.0.0 Use \OCP\Template::html_select_options() instead
*/
function html_select_options($options, $selected, $params=array()) {
return(\html_select_options($options, $selected, $params));
return \html_select_options($options, $selected, $params);
}

@ -73,7 +73,7 @@ class Util {
* @since 4.0.0
*/
public static function getVersion() {
return(\OC_Util::getVersion());
return \OC_Util::getVersion();
}
/**
@ -119,11 +119,11 @@ class Util {
$message->setPlainBody($mailtext);
$message->setFrom([$fromaddress => $fromname]);
if($html === 1) {
$message->setHTMLBody($altbody);
$message->setHtmlBody($altbody);
}
if($altbody === '') {
$message->setHTMLBody($mailtext);
$message->setHtmlBody($mailtext);
$message->setPlainBody('');
} else {
$message->setHtmlBody($mailtext);
@ -254,7 +254,7 @@ class Util {
* @since 4.0.0
*/
public static function formatDate($timestamp, $dateOnly=false, $timeZone = null) {
return(\OC_Util::formatDate($timestamp, $dateOnly, $timeZone));
return \OC_Util::formatDate($timestamp, $dateOnly, $timeZone);
}
/**
@ -440,8 +440,8 @@ class Util {
* @return string a human readable file size
* @since 4.0.0
*/
public static function humanFileSize( $bytes ) {
return(\OC_Helper::humanFileSize( $bytes ));
public static function humanFileSize($bytes) {
return \OC_Helper::humanFileSize($bytes);
}
/**
@ -452,8 +452,8 @@ class Util {
* Inspired by: http://www.php.net/manual/en/function.filesize.php#92418
* @since 4.0.0
*/
public static function computerFileSize( $str ) {
return(\OC_Helper::computerFileSize( $str ));
public static function computerFileSize($str) {
return \OC_Helper::computerFileSize($str);
}
/**
@ -470,8 +470,8 @@ class Util {
* TODO: write example
* @since 4.0.0
*/
static public function connectHook($signalClass, $signalName, $slotClass, $slotName ) {
return(\OC_Hook::connect($signalClass, $signalName, $slotClass, $slotName ));
static public function connectHook($signalClass, $signalName, $slotClass, $slotName) {
return \OC_Hook::connect($signalClass, $signalName, $slotClass, $slotName);
}
/**
@ -484,8 +484,8 @@ class Util {
* TODO: write example
* @since 4.0.0
*/
static public function emitHook( $signalclass, $signalname, $params = array()) {
return(\OC_Hook::emit( $signalclass, $signalname, $params ));
static public function emitHook($signalclass, $signalname, $params = array()) {
return \OC_Hook::emit($signalclass, $signalname, $params);
}
/**
@ -518,7 +518,7 @@ class Util {
exit();
}
if (!(\OC::$server->getRequest()->passesCSRFCheck())) {
if (!\OC::$server->getRequest()->passesCSRFCheck()) {
exit();
}
}
@ -549,7 +549,7 @@ class Util {
* @since 6.0.0
*/
public static function encodePath($component) {
return(\OC_Util::encodePath($component));
return \OC_Util::encodePath($component);
}
/**
@ -562,7 +562,7 @@ class Util {
* @since 4.5.0
*/
public static function mb_array_change_key_case($input, $case = MB_CASE_LOWER, $encoding = 'UTF-8') {
return(\OC_Helper::mb_array_change_key_case($input, $case, $encoding));
return \OC_Helper::mb_array_change_key_case($input, $case, $encoding);
}
/**
@ -607,7 +607,7 @@ class Util {
* @since 4.5.0
*/
public static function recursiveArraySearch($haystack, $needle, $index = null) {
return(\OC_Helper::recursiveArraySearch($haystack, $needle, $index));
return \OC_Helper::recursiveArraySearch($haystack, $needle, $index);
}
/**

Loading…
Cancel
Save