Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Nextcloud
Commits
009e9559
Commit
009e9559
authored
11 years ago
by
Bart Visscher
Browse files
Options
Downloads
Patches
Plain Diff
Remove default return hint
parent
061fb79e
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/log.php
+0
-9
0 additions, 9 deletions
lib/log.php
with
0 additions
and
9 deletions
lib/log.php
+
0
−
9
View file @
009e9559
...
...
@@ -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'
]))
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment