Skip to content

Commit e07108d

Browse files
authored
Merge pull request #752 from ajbonner/master
[simple-client] Fix Logger Initialisation
2 parents 579b691 + 7ec9ca7 commit e07108d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: pkg/simple-client/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Enqueue is an MIT-licensed open source project with its ongoing development made
1414
[![Total Downloads](https://poser.pugx.org/enqueue/simple-client/d/total.png)](https://packagist.org/packages/enqueue/simple-client)
1515
[![Latest Stable Version](https://poser.pugx.org/enqueue/simple-client/version.png)](https://packagist.org/packages/enqueue/simple-client)
1616

17-
The simple client takes Enqueue client classes and Symfony components and combines it to easy to use facade called `SimpleCLient`.
17+
The simple client takes Enqueue client classes and Symfony components and combines it to easy to use facade called `SimpleClient`.
1818

1919
## Resources
2020

Diff for: pkg/simple-client/SimpleClient.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,9 @@ public function __construct($config, LoggerInterface $logger = null)
126126
];
127127
}
128128

129-
$this->build(['enqueue' => $config]);
130-
131129
$this->logger = $logger ?: new NullLogger();
130+
131+
$this->build(['enqueue' => $config]);
132132
}
133133

134134
/**

0 commit comments

Comments
 (0)