Skip to content

Commit

Permalink
Issue #3123065 by jungle, daffie: Fix 'Drupal.NamingConventions.Valid…
Browse files Browse the repository at this point in the history
…ClassName' coding standard
  • Loading branch information
alexpott committed May 29, 2020
1 parent 1955578 commit ede5565
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*
* @group field
*/
class reEnableModuleFieldTest extends BrowserTestBase {
class ReEnableModuleFieldTest extends BrowserTestBase {

use CronRunTrait;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public function testSerialize() {
* @preserveGlobalState disabled
*/
public function testConstructor() {
class_alias(testInterface::class, 'Symfony\Component\Config\Resource\ResourceInterface');
class_alias(TestInterface::class, 'Symfony\Component\Config\Resource\ResourceInterface');
$container = new ContainerBuilder();
$this->assertFalse($container->isTrackingResources());
}
Expand All @@ -143,5 +143,5 @@ class_alias(testInterface::class, 'Symfony\Component\Config\Resource\ResourceInt
*
* @see \Drupal\Tests\Core\DependencyInjection\ContainerBuilderTest::testConstructor()
*/
interface testInterface {
interface TestInterface {
}
2 changes: 1 addition & 1 deletion tests/Drupal/Tests/Core/DrupalKernel/DrupalKernelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ public function testFindSitePath() {
/**
* A fake autoloader for testing
*/
class fakeAutoloader {
class FakeAutoloader {

/**
* Registers this instance as an autoloader.
Expand Down

0 comments on commit ede5565

Please sign in to comment.