Issue #2851510 by klausi: Fix phpcs regressions by running phpcbf
parent
91736cadcb
commit
6ca61afd59
|
@ -39,7 +39,8 @@ class BookInstallTest extends WebTestBase {
|
|||
// Install the Book module.
|
||||
try {
|
||||
$this->container->get('module_installer')->install(['book']);
|
||||
} catch (PreExistingConfigException $e) {
|
||||
}
|
||||
catch (PreExistingConfigException $e) {
|
||||
$this->fail("Expected exception thrown trying to install Book module: " . $e->getMessage());
|
||||
}
|
||||
}
|
||||
|
|
|
@ -167,4 +167,5 @@ class Node extends FieldableEntity {
|
|||
$query->where('n.tnid <> 0 AND n.tnid <> n.nid');
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -77,7 +77,7 @@ class NodeCreationTest extends NodeTestBase {
|
|||
$admin_user = $this->drupalCreateUser(array('administer nodes', 'create page content'));
|
||||
$this->drupalLogin($admin_user);
|
||||
$this->drupalGet('node/add/page');
|
||||
$this->assertNoFieldById('edit-revision', NULL , 'The revision checkbox is not present.');
|
||||
$this->assertNoFieldById('edit-revision', NULL, 'The revision checkbox is not present.');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -84,5 +84,4 @@ class ExcludedFieldTokenTest extends ViewTestBase {
|
|||
$this->assertIdentical($actual_json, json_encode($expected));
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@ use Drupal\Core\Form\FormStateInterface;
|
|||
* },
|
||||
* )
|
||||
*/
|
||||
class ShapeOnlyColorEditableWidget extends WidgetBase {
|
||||
class ShapeOnlyColorEditableWidget extends WidgetBase {
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
|
|
|
@ -7,7 +7,6 @@ use Drupal\Component\Plugin\Exception\PluginNotFoundException;
|
|||
use Drupal\Core\Database\DatabaseExceptionWrapper;
|
||||
use Drupal\Core\Plugin\Discovery\ContainerDeriverInterface;
|
||||
use Drupal\migrate\Exception\RequirementsException;
|
||||
use Drupal\migrate\Plugin\Migration;
|
||||
use Drupal\migrate\Plugin\MigrationDeriverTrait;
|
||||
use Drupal\migrate_drupal\Plugin\MigrateCckFieldPluginManagerInterface;
|
||||
use Symfony\Component\DependencyInjection\ContainerInterface;
|
||||
|
|
|
@ -162,4 +162,5 @@ class FilterTest extends PluginTestBase {
|
|||
$this->drupalPostForm(NULL, [], t('Update preview'));
|
||||
$this->assertNoText('An illegal choice has been detected.');
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -2,8 +2,6 @@
|
|||
|
||||
namespace Drupal\FunctionalTests\Entity;
|
||||
|
||||
use Drupal\Core\Entity\ContentEntityInterface;
|
||||
use Drupal\Core\Entity\ContentEntityStorageInterface;
|
||||
use Drupal\Core\Field\FieldStorageDefinitionInterface;
|
||||
use Drupal\field\Entity\FieldConfig;
|
||||
use Drupal\field\Entity\FieldStorageConfig;
|
||||
|
@ -14,7 +12,7 @@ use Drupal\Tests\BrowserTestBase;
|
|||
*
|
||||
* @group Entity
|
||||
*/
|
||||
class ContentEntityFormCorrectUserInputMappingOnFieldDeltaElementsTest extends BrowserTestBase {
|
||||
class ContentEntityFormCorrectUserInputMappingOnFieldDeltaElementsTest extends BrowserTestBase {
|
||||
|
||||
/**
|
||||
* The ID of the type of the entity under test.
|
||||
|
|
|
@ -121,4 +121,5 @@ class EntityAccessCheckTest extends UnitTestCase {
|
|||
$route_match->getParameters()->willReturn(new ParameterBag(['entity_type' => 'node', 'var_name' => $object]));
|
||||
return $route_match->reveal();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue