Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
wp-logs
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wpdesk
wp-logs
Merge requests
!31
bugfix(compatibility): backward compatibility
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
bugfix(compatibility): backward compatibility
bugfix/backward-compatibility
into
master
Overview
0
Commits
1
Pipelines
1
Changes
2
Merged
Grzegorz Rola
requested to merge
bugfix/backward-compatibility
into
master
10 months ago
Overview
0
Commits
1
Pipelines
1
Changes
2
Expand
👍
0
👎
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
27286b12
1 commit,
10 months ago
2 files
+
5
−
0
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
src/SimpleLoggerFactory.php
+
1
−
0
Options
@@ -35,6 +35,7 @@ final class SimpleLoggerFactory implements LoggerFactory {
@@ -35,6 +35,7 @@ final class SimpleLoggerFactory implements LoggerFactory {
*/
*/
public
function
__construct
(
string
$channel
,
$options
=
null
)
{
public
function
__construct
(
string
$channel
,
$options
=
null
)
{
$this
->
channel
=
$channel
;
$this
->
channel
=
$channel
;
$options
=
$options
??
new
Settings
();
if
(
$options
instanceof
Settings
)
{
if
(
$options
instanceof
Settings
)
{
$options
=
$options
->
to_array
();
$options
=
$options
->
to_array
();
Loading