Skip to content
Snippets Groups Projects
Unverified Commit 2c02bb9a authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3123065 by jungle, daffie: Fix 'Drupal.NamingConventions.ValidClassName' coding standard

parent ea668bd2
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@
*
* @group field
*/
class reEnableModuleFieldTest extends BrowserTestBase {
class ReEnableModuleFieldTest extends BrowserTestBase {
use CronRunTrait;
......
......@@ -158,6 +158,7 @@
<property name="checkClosures" value="true"/>
</properties>
</rule>
<rule ref="Drupal.NamingConventions.ValidClassName"/>
<rule ref="Generic.NamingConventions.ConstructorName"/>
<rule ref="Generic.NamingConventions.UpperCaseConstantName"/>
<rule ref="Generic.PHP.DeprecatedFunctions"/>
......
......@@ -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());
}
......@@ -143,5 +143,5 @@ class_alias(testInterface::class, 'Symfony\Component\Config\Resource\ResourceInt
*
* @see \Drupal\Tests\Core\DependencyInjection\ContainerBuilderTest::testConstructor()
*/
interface testInterface {
interface TestInterface {
}
......@@ -141,7 +141,7 @@ public function testFindSitePath() {
/**
* A fake autoloader for testing
*/
class fakeAutoloader {
class FakeAutoloader {
/**
* Registers this instance as an autoloader.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment