Skip to content
This repository has been archived by the owner on Jun 24, 2019. It is now read-only.

Commit

Permalink
[PATCH] Fixed CS
Browse files Browse the repository at this point in the history
  • Loading branch information
core23 committed May 10, 2019
1 parent 1ee52f7 commit 85a290e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Expand Up @@ -20,20 +20,20 @@ public function testItIsInstantiable(): void
{
$bundle = new Core23MonologFiltersBundle();

$this->assertInstanceOf(BundleInterface::class, $bundle);
static::assertInstanceOf(BundleInterface::class, $bundle);
}

public function testGetPath(): void
{
$bundle = new Core23MonologFiltersBundle();

$this->assertStringEndsWith('Bridge/Symfony/Bundle', \dirname($bundle->getPath()));
static::assertStringEndsWith('Bridge/Symfony/Bundle', \dirname($bundle->getPath()));
}

public function testGetContainerExtension(): void
{
$bundle = new Core23MonologFiltersBundle();

$this->assertInstanceOf(Core23MonologFiltersExtension::class, $bundle->getContainerExtension());
static::assertInstanceOf(Core23MonologFiltersExtension::class, $bundle->getContainerExtension());
}
}
Expand Up @@ -30,6 +30,6 @@ public function testDefaultOptions(): void
],
];

$this->assertSame($expected, $config);
static::assertSame($expected, $config);
}
}
Expand Up @@ -20,7 +20,7 @@ public function testLoadDefault(): void
{
$this->load();

$this->assertTrue(true);
static::assertTrue(true);
}

protected function getContainerExtensions()
Expand Down
Expand Up @@ -34,7 +34,7 @@ public function testIsActivated($url, $record, $expected): void

$strategy = new ClientErrorActivationStrategy($requestStack, ['^/foo', 'bar'], Logger::WARNING);

$this->assertSame($expected, $strategy->isHandlerActivated($record));
static::assertSame($expected, $strategy->isHandlerActivated($record));
}

public function isActivatedProvider(): array
Expand Down

0 comments on commit 85a290e

Please sign in to comment.