summaryrefslogtreecommitdiffstats
path: root/lib/log.php
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2013-05-13 08:16:41 +0200
committerBart Visscher <bartv@thisnet.nl>2013-05-13 08:28:10 +0200
commit009e9559f3a12d7275ab242ececaa7f9452165c1 (patch)
treeaf765128cfd5ce5230ad47ecb096dba11554f0e4 /lib/log.php
parent061fb79e5c26ec1cf3432dda8c439a167bfc4e1d (diff)
downloadnextcloud-server-009e9559f3a12d7275ab242ececaa7f9452165c1.tar.gz
nextcloud-server-009e9559f3a12d7275ab242ececaa7f9452165c1.zip
Remove default return hint
Diffstat (limited to 'lib/log.php')
-rw-r--r--lib/log.php9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/log.php b/lib/log.php
index fc190f1378b..442872af9c4 100644
--- a/lib/log.php
+++ b/lib/log.php
@@ -28,7 +28,6 @@ class Log {
*
* @param string $message
* @param array $context
- * @return null
*/
public function emergency($message, array $context = array()) {
$this->log(\OC_Log::FATAL, $message, $context);
@@ -42,7 +41,6 @@ class Log {
*
* @param string $message
* @param array $context
- * @return null
*/
public function alert($message, array $context = array()) {
$this->log(self::ALERT, $message, $context);
@@ -55,7 +53,6 @@ class Log {
*
* @param string $message
* @param array $context
- * @return null
*/
public function critical($message, array $context = array()) {
$this->log(self::CRITICAL, $message, $context);
@@ -67,7 +64,6 @@ class Log {
*
* @param string $message
* @param array $context
- * @return null
*/
public function error($message, array $context = array()) {
$this->log(\OC_Log::ERROR, $message, $context);
@@ -81,7 +77,6 @@ class Log {
*
* @param string $message
* @param array $context
- * @return null
*/
public function warning($message, array $context = array()) {
$this->log(\OC_Log::WARN, $message, $context);
@@ -92,7 +87,6 @@ class Log {
*
* @param string $message
* @param array $context
- * @return null
*/
public function notice($message, array $context = array()) {
$this->log(self::NOTICE, $message, $context);
@@ -105,7 +99,6 @@ class Log {
*
* @param string $message
* @param array $context
- * @return null
*/
public function info($message, array $context = array()) {
$this->log(\OC_Log::INFO, $message, $context);
@@ -116,7 +109,6 @@ class Log {
*
* @param string $message
* @param array $context
- * @return null
*/
public function debug($message, array $context = array()) {
$this->log(\OC_Log::DEBUG, $message, $context);
@@ -128,7 +120,6 @@ class Log {
* @param mixed $level
* @param string $message
* @param array $context
- * @return null
*/
protected function log($level, $message, array $context = array()) {
if (isset($context['app'])) {