Skip to content

Commit

Permalink
Fix phpcs errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Nov 11, 2017
1 parent 593e849 commit b049f90
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/TestCase/Core/InstanceConfigTraitTest.php
Expand Up @@ -103,7 +103,7 @@ public function setUp()
*/
public function testDefaultsAreSet()
{
$this->deprecated(function() {
$this->deprecated(function () {
$this->assertSame(
[
'some' => 'string',
Expand Down
4 changes: 2 additions & 2 deletions tests/TestCase/Core/StaticConfigTraitTest.php
Expand Up @@ -247,7 +247,7 @@ public function testParseDsnPathSetting()
*/
public function testCanUpdateClassMap()
{
$this->deprecated(function() {
$this->deprecated(function () {
$expected = [
'console' => 'Cake\Log\Engine\ConsoleLog',
'file' => 'Cake\Log\Engine\FileLog',
Expand Down Expand Up @@ -283,7 +283,7 @@ public function testCanUpdateClassMap()
*/
public function testConfigBC()
{
$this->deprecated(function() {
$this->deprecated(function () {
$result = TestLogStaticConfig::config(404);
$this->assertNull($result);
});
Expand Down

0 comments on commit b049f90

Please sign in to comment.