Issue #2572787 by alexpott, mfernea, attiks, andriyun, andypost, RoSk0, hussainweb, klausi, martin107: Fix 'Drupal.WhiteSpace.CloseBracketSpacing' coding standard
parent
2fc85e7f0f
commit
db5e8289f2
|
@ -50,7 +50,7 @@ class Condition extends ConditionBase {
|
|||
// matter and this config object does not match.
|
||||
// If OR and it is matching, then the rest of conditions do not
|
||||
// matter and this config object does match.
|
||||
if ($and != $match ) {
|
||||
if ($and != $match) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -133,7 +133,7 @@ class InstallStorage extends FileStorage {
|
|||
else {
|
||||
$return = [];
|
||||
foreach ($names as $index => $name) {
|
||||
if (strpos($name, $prefix) === 0 ) {
|
||||
if (strpos($name, $prefix) === 0) {
|
||||
$return[$index] = $names[$index];
|
||||
}
|
||||
}
|
||||
|
|
|
@ -254,7 +254,7 @@ class Tasks extends InstallTasks {
|
|||
\'SELECT random();\'
|
||||
LANGUAGE \'sql\'',
|
||||
[],
|
||||
['allow_delimiter_in_query' => TRUE ]
|
||||
['allow_delimiter_in_query' => TRUE]
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -263,7 +263,7 @@ class Tasks extends InstallTasks {
|
|||
\'SELECT array_to_string((string_to_array($1, $2)) [1:$3], $2);\'
|
||||
LANGUAGE \'sql\'',
|
||||
[],
|
||||
['allow_delimiter_in_query' => TRUE ]
|
||||
['allow_delimiter_in_query' => TRUE]
|
||||
);
|
||||
}
|
||||
$connection->query('SELECT pg_advisory_unlock(1)');
|
||||
|
|
|
@ -192,7 +192,7 @@ class DiffFormatter extends DiffFormatterBase {
|
|||
// Notice that WordLevelDiff returns HTML-escaped output. Hence, we will be
|
||||
// calling addedLine/deletedLine without HTML-escaping.
|
||||
while ($line = array_shift($del)) {
|
||||
$aline = array_shift($add );
|
||||
$aline = array_shift($add);
|
||||
$this->rows[] = array_merge($this->deletedLine($line), isset($aline) ? $this->addedLine($aline) : $this->emptyLine());
|
||||
}
|
||||
|
||||
|
|
|
@ -313,7 +313,7 @@ class EntityType extends PluginDefinition implements EntityTypeInterface {
|
|||
|
||||
// Automatically add the EntityChanged constraint if the entity type tracks
|
||||
// the changed time.
|
||||
if ($this->entityClassImplements(EntityChangedInterface::class) ) {
|
||||
if ($this->entityClassImplements(EntityChangedInterface::class)) {
|
||||
$this->addConstraint('EntityChanged');
|
||||
}
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ class EntityAdapter extends TypedData implements \IteratorAggregate, ComplexData
|
|||
public static function createFromEntity(EntityInterface $entity) {
|
||||
$definition = EntityDataDefinition::create()
|
||||
->setEntityTypeId($entity->getEntityTypeId())
|
||||
->setBundles([$entity->bundle() ]);
|
||||
->setBundles([$entity->bundle()]);
|
||||
$instance = new static($definition);
|
||||
$instance->setValue($entity);
|
||||
return $instance;
|
||||
|
|
|
@ -226,7 +226,7 @@ class UpdateRegistry {
|
|||
$all_functions = $this->getAvailableUpdateFunctions();
|
||||
|
||||
return array_filter($all_functions, function ($function_name) use ($module_name) {
|
||||
list($function_module_name, ) = explode("_{$this->updateType}_", $function_name);
|
||||
list($function_module_name,) = explode("_{$this->updateType}_", $function_name);
|
||||
return $function_module_name === $module_name;
|
||||
});
|
||||
}
|
||||
|
|
|
@ -27,7 +27,7 @@ class ActionUninstallTest extends BrowserTestBase {
|
|||
|
||||
$storage = $this->container->get('entity_type.manager')->getStorage('action');
|
||||
$storage->resetCache(['user_block_user_action']);
|
||||
$this->assertTrue($storage->load('user_block_user_action'), 'Configuration entity \'user_block_user_action\' still exists after uninstalling action module.' );
|
||||
$this->assertTrue($storage->load('user_block_user_action'), 'Configuration entity \'user_block_user_action\' still exists after uninstalling action module.');
|
||||
|
||||
$admin_user = $this->drupalCreateUser(['administer users']);
|
||||
$this->drupalLogin($admin_user);
|
||||
|
|
|
@ -61,7 +61,7 @@ class BlockAccessControlHandler extends EntityAccessControlHandler implements En
|
|||
* @param \Drupal\Core\Plugin\Context\ContextRepositoryInterface $context_repository
|
||||
* The lazy context repository service.
|
||||
*/
|
||||
public function __construct(EntityTypeInterface $entity_type, ContextHandlerInterface $context_handler, ContextRepositoryInterface $context_repository ) {
|
||||
public function __construct(EntityTypeInterface $entity_type, ContextHandlerInterface $context_handler, ContextRepositoryInterface $context_repository) {
|
||||
parent::__construct($entity_type);
|
||||
$this->contextHandler = $context_handler;
|
||||
$this->contextRepository = $context_repository;
|
||||
|
|
|
@ -15,7 +15,7 @@ class Textarea extends FormElementBase {
|
|||
public function getTranslationElement(LanguageInterface $translation_language, $source_config, $translation_config) {
|
||||
// Estimate a comfortable size of the input textarea.
|
||||
$rows_words = ceil(str_word_count($translation_config) / 5);
|
||||
$rows_newlines = substr_count($translation_config, "\n" ) + 1;
|
||||
$rows_newlines = substr_count($translation_config, "\n") + 1;
|
||||
$rows = max($rows_words, $rows_newlines);
|
||||
|
||||
return [
|
||||
|
|
|
@ -347,7 +347,7 @@ class FieldStorageCrudTest extends FieldKernelTestBase {
|
|||
FieldConfig::create($field_definition)->save();
|
||||
$field_storage = FieldStorageConfig::load('entity_test.' . $field_storage_definition['field_name']);
|
||||
$this->assertTrue(!empty($field_storage) && !$field_storage->isDeleted(), 'A new storage with a previously used name is created.');
|
||||
$field = FieldConfig::load('entity_test.' . $field_definition['bundle'] . '.' . $field_definition['field_name'] );
|
||||
$field = FieldConfig::load('entity_test.' . $field_definition['bundle'] . '.' . $field_definition['field_name']);
|
||||
$this->assertTrue(!empty($field) && !$field->isDeleted(), 'A new field for a previously used field name is created.');
|
||||
|
||||
// Save an entity with data for the field
|
||||
|
|
|
@ -135,7 +135,7 @@ class DenormalizeTest extends NormalizerTestBase {
|
|||
],
|
||||
'field_test_text' => [],
|
||||
];
|
||||
$entity = $this->serializer->denormalize($data, get_class($entity), $this->format, ['target_instance' => $entity ]);
|
||||
$entity = $this->serializer->denormalize($data, get_class($entity), $this->format, ['target_instance' => $entity]);
|
||||
$this->assertEqual($entity->field_test_text->count(), 0);
|
||||
}
|
||||
|
||||
|
|
|
@ -193,7 +193,7 @@ class ImageStylesPathAndUrlTest extends WebTestBase {
|
|||
$this->drupalGet($generate_url_noaccess);
|
||||
$this->assertResponse(403, 'Confirmed that access is denied for the private image style.');
|
||||
// Verify that images are not appended to the response. Currently this test only uses PNG images.
|
||||
if (strpos($generate_url, '.png') === FALSE ) {
|
||||
if (strpos($generate_url, '.png') === FALSE) {
|
||||
$this->fail('Confirming that private image styles are not appended require PNG file.');
|
||||
}
|
||||
else {
|
||||
|
|
|
@ -139,7 +139,7 @@ class QuickEditImageControllerTest extends WebTestBase {
|
|||
foreach ($this->drupalGetTestFiles('image') as $image) {
|
||||
/** @var \Drupal\Core\Image\ImageInterface $image_file */
|
||||
$image_file = $image_factory->get($image->uri);
|
||||
if ($image_file->getWidth() < 50 || $image_file->getWidth() > 100 ) {
|
||||
if ($image_file->getWidth() < 50 || $image_file->getWidth() > 100) {
|
||||
$invalid_image = $image;
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -26,7 +26,7 @@ class NegotiationBrowserForm extends ConfigFormBase {
|
|||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function __construct(ConfigFactoryInterface $config_factory, ConfigurableLanguageManagerInterface $language_manager ) {
|
||||
public function __construct(ConfigFactoryInterface $config_factory, ConfigurableLanguageManagerInterface $language_manager) {
|
||||
parent::__construct($config_factory);
|
||||
$this->languageManager = $language_manager;
|
||||
}
|
||||
|
|
|
@ -113,7 +113,7 @@ class EntityContentBaseTest extends UnitTestCase {
|
|||
$this->storage->getEntityType()->willReturn($entity_type->reveal());
|
||||
|
||||
$destination = new EntityTestDestination(
|
||||
['translations' => TRUE ],
|
||||
['translations' => TRUE],
|
||||
'',
|
||||
[],
|
||||
$this->migration->reveal(),
|
||||
|
|
|
@ -138,7 +138,7 @@ class NodeGrantDatabaseStorage implements NodeGrantDatabaseStorageInterface {
|
|||
|
||||
$grants = static::buildGrantsQueryCondition(node_access_grants('view', $account));
|
||||
|
||||
if (count($grants) > 0 ) {
|
||||
if (count($grants) > 0) {
|
||||
$query->condition($grants);
|
||||
}
|
||||
return $query->execute()->fetchField();
|
||||
|
|
|
@ -184,7 +184,7 @@ class NodeCreationTest extends NodeTestBase {
|
|||
$this->assertNoLinkByHref('/admin/structure/types/add');
|
||||
|
||||
// Test /node/add page without content types.
|
||||
foreach (\Drupal::entityManager()->getStorage('node_type')->loadMultiple() as $entity ) {
|
||||
foreach (\Drupal::entityManager()->getStorage('node_type')->loadMultiple() as $entity) {
|
||||
$entity->delete();
|
||||
}
|
||||
|
||||
|
|
|
@ -574,7 +574,7 @@ class SearchQuery extends SelectExtender {
|
|||
|
||||
// Add arguments for the keyword relevance normalization number.
|
||||
$normalization = 1.0 / $this->normalize;
|
||||
for ($i = 0; $i < $this->relevance_count; $i++ ) {
|
||||
for ($i = 0; $i < $this->relevance_count; $i++) {
|
||||
$this->scoresArguments[':normalization_' . $i] = $normalization;
|
||||
}
|
||||
|
||||
|
|
|
@ -175,7 +175,7 @@ EOD;
|
|||
// along by the rethrow.
|
||||
assert(FALSE, 'Lorem Ipsum');
|
||||
}
|
||||
catch (\AssertionError $e ) {
|
||||
catch (\AssertionError $e) {
|
||||
$this->assertEqual($e->getMessage(), 'Lorem Ipsum', 'Runtime assertions Enabled and running.');
|
||||
}
|
||||
}
|
||||
|
|
|
@ -45,7 +45,7 @@ class Rotate extends GDImageToolkitOperationBase {
|
|||
// Validate or set background color argument.
|
||||
if (!empty($arguments['background'])) {
|
||||
// Validate the background color: Color::hexToRgb does so for us.
|
||||
$background = Color::hexToRgb($arguments['background']) + ['alpha' => 0 ];
|
||||
$background = Color::hexToRgb($arguments['background']) + ['alpha' => 0];
|
||||
}
|
||||
else {
|
||||
// Background color is not specified: use transparent white as background.
|
||||
|
|
|
@ -275,7 +275,7 @@ class InstallUninstallTest extends ModuleTestBase {
|
|||
$all_update_functions = $post_update_registry->getPendingUpdateFunctions();
|
||||
$empty_result = TRUE;
|
||||
foreach ($all_update_functions as $function) {
|
||||
list($function_module, ) = explode('_post_update_', $function);
|
||||
list($function_module,) = explode('_post_update_', $function);
|
||||
if ($module === $function_module) {
|
||||
$empty_result = FALSE;
|
||||
break;
|
||||
|
|
|
@ -621,7 +621,7 @@ function system_requirements($phase) {
|
|||
}
|
||||
}
|
||||
}
|
||||
if ($phase != 'install' && (empty($GLOBALS['config_directories']) || empty($GLOBALS['config_directories'][CONFIG_SYNC_DIRECTORY]) )) {
|
||||
if ($phase != 'install' && (empty($GLOBALS['config_directories']) || empty($GLOBALS['config_directories'][CONFIG_SYNC_DIRECTORY]))) {
|
||||
$requirements['config directories'] = [
|
||||
'title' => t('Configuration directories'),
|
||||
'value' => t('Not present'),
|
||||
|
@ -1538,7 +1538,7 @@ function system_update_8007() {
|
|||
$schema = \Drupal::keyValue('entity.storage_schema.sql')->getAll();
|
||||
$schema_copy = $schema;
|
||||
foreach ($schema as $item_name => $item) {
|
||||
list($entity_type_id, , ) = explode('.', $item_name);
|
||||
list($entity_type_id, ,) = explode('.', $item_name);
|
||||
if (!isset($entity_types[$entity_type_id])) {
|
||||
continue;
|
||||
}
|
||||
|
|
|
@ -611,7 +611,7 @@ function system_page_attachments(array &$page) {
|
|||
}
|
||||
|
||||
// Get the major Drupal version.
|
||||
list($version, ) = explode('.', \Drupal::VERSION);
|
||||
list($version,) = explode('.', \Drupal::VERSION);
|
||||
|
||||
// Attach default meta tags.
|
||||
$meta_default = [
|
||||
|
|
|
@ -14,7 +14,7 @@ class AdminMetaTagTest extends BrowserTestBase {
|
|||
* Verify that the meta tag HTML is generated correctly.
|
||||
*/
|
||||
public function testMetaTag() {
|
||||
list($version, ) = explode('.', \Drupal::VERSION);
|
||||
list($version,) = explode('.', \Drupal::VERSION);
|
||||
$string = '<meta name="Generator" content="Drupal ' . $version . ' (https://www.drupal.org)" />';
|
||||
$this->drupalGet('node');
|
||||
$this->assertRaw($string, 'Fingerprinting meta tag generated correctly.', 'System');
|
||||
|
|
|
@ -65,7 +65,7 @@ class TaxonomyTermIndentationTest extends TaxonomyTestBase {
|
|||
'terms[tid:' . $term2->id() . ':0][weight]' => 1,
|
||||
];
|
||||
|
||||
$this->drupalPostForm('admin/structure/taxonomy/manage/' . $this->vocabulary->get('vid' ) . '/overview', $edit, t('Save'));
|
||||
$this->drupalPostForm('admin/structure/taxonomy/manage/' . $this->vocabulary->get('vid') . '/overview', $edit, t('Save'));
|
||||
// All terms back at the root level, no indentation should be present.
|
||||
$this->assertNoPattern('|<div class="js-indentation indentation"> </div>|');
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ class TermKernelTest extends KernelTestBase {
|
|||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public static $modules = ['filter', 'taxonomy', 'text', 'user' ];
|
||||
public static $modules = ['filter', 'taxonomy', 'text', 'user'];
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
|
|
|
@ -109,7 +109,7 @@ function hook_toolbar() {
|
|||
'#heading' => t('Shopping cart actions'),
|
||||
'shopping_cart' => [
|
||||
'#theme' => 'item_list',
|
||||
'#items' => [/* An item list renderable array */ ],
|
||||
'#items' => [/* An item list renderable array */],
|
||||
],
|
||||
],
|
||||
'#weight' => 150,
|
||||
|
|
|
@ -345,7 +345,7 @@ function _toolbar_do_get_rendered_subtrees(array $data) {
|
|||
// Many routes have dots as route name, while some special ones like <front>
|
||||
// have <> characters in them.
|
||||
$url = $link->getUrlObject();
|
||||
$id = str_replace(['.', '<', '>'], ['-', '', '' ], $url->isRouted() ? $url->getRouteName() : $url->getUri());
|
||||
$id = str_replace(['.', '<', '>'], ['-', '', ''], $url->isRouted() ? $url->getRouteName() : $url->getUri());
|
||||
|
||||
$subtrees[$id] = $output;
|
||||
}
|
||||
|
|
|
@ -254,7 +254,7 @@ class UserRegistrationTest extends WebTestBase {
|
|||
$new_user = reset($accounts);
|
||||
$this->assertEqual($new_user->getUsername(), $name, 'Username matches.');
|
||||
$this->assertEqual($new_user->getEmail(), $mail, 'Email address matches.');
|
||||
$this->assertTrue(($new_user->getCreatedTime() > REQUEST_TIME - 20 ), 'Correct creation time.');
|
||||
$this->assertTrue(($new_user->getCreatedTime() > REQUEST_TIME - 20), 'Correct creation time.');
|
||||
$this->assertEqual($new_user->isActive(), $config_user_settings->get('register') == USER_REGISTER_VISITORS ? 1 : 0, 'Correct status field.');
|
||||
$this->assertEqual($new_user->getTimezone(), $config_system_date->get('timezone.default'), 'Correct time zone field.');
|
||||
$this->assertEqual($new_user->langcode->value, \Drupal::languageManager()->getDefaultLanguage()->getId(), 'Correct language field.');
|
||||
|
|
|
@ -24,7 +24,7 @@ class MonthDate extends Date {
|
|||
*/
|
||||
public function summaryName($data) {
|
||||
$month = str_pad($data->{$this->name_alias}, 2, '0', STR_PAD_LEFT);
|
||||
return format_date(strtotime("2005" . $month . "15" . " 00:00:00 UTC" ), 'custom', $this->format, 'UTC');
|
||||
return format_date(strtotime("2005" . $month . "15" . " 00:00:00 UTC"), 'custom', $this->format, 'UTC');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -865,10 +865,10 @@ abstract class FieldPluginBase extends HandlerBase implements FieldHandlerInterf
|
|||
$optgroup_arguments = (string) t('Arguments');
|
||||
$optgroup_fields = (string) t('Fields');
|
||||
foreach ($previous as $id => $label) {
|
||||
$options[$optgroup_fields]["{{ $id }}"] = substr(strrchr($label, ":"), 2 );
|
||||
$options[$optgroup_fields]["{{ $id }}"] = substr(strrchr($label, ":"), 2);
|
||||
}
|
||||
// Add the field to the list of options.
|
||||
$options[$optgroup_fields]["{{ {$this->options['id']} }}"] = substr(strrchr($this->adminLabel(), ":"), 2 );
|
||||
$options[$optgroup_fields]["{{ {$this->options['id']} }}"] = substr(strrchr($this->adminLabel(), ":"), 2);
|
||||
|
||||
foreach ($this->view->display_handler->getHandlers('argument') as $arg => $handler) {
|
||||
$options[$optgroup_arguments]["{{ arguments.$arg }}"] = $this->t('@argument title', ['@argument' => $handler->adminLabel()]);
|
||||
|
|
|
@ -37,7 +37,7 @@ class EntityReference extends Fields {
|
|||
parent::buildOptionsForm($form, $form_state);
|
||||
|
||||
// Expand the description of the 'Inline field' checkboxes.
|
||||
$form['inline']['#description'] .= '<br />' . $this->t("<strong>Note:</strong> In 'Entity Reference' displays, all fields will be displayed inline unless an explicit selection of inline fields is made here." );
|
||||
$form['inline']['#description'] .= '<br />' . $this->t("<strong>Note:</strong> In 'Entity Reference' displays, all fields will be displayed inline unless an explicit selection of inline fields is made here.");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -47,7 +47,7 @@ class RowEntityTest extends ViewsKernelTestBase {
|
|||
public function testEntityRow() {
|
||||
$vocab = Vocabulary::create(['name' => $this->randomMachineName(), 'vid' => strtolower($this->randomMachineName())]);
|
||||
$vocab->save();
|
||||
$term = Term::create(['name' => $this->randomMachineName(), 'vid' => $vocab->id() ]);
|
||||
$term = Term::create(['name' => $this->randomMachineName(), 'vid' => $vocab->id()]);
|
||||
$term->save();
|
||||
|
||||
$view = Views::getView('test_entity_row');
|
||||
|
|
|
@ -265,7 +265,7 @@ class ViewEditForm extends ViewFormBase {
|
|||
// options.
|
||||
$display_handler = $executable->displayHandlers->get($id);
|
||||
if ($attachments = $display_handler->getAttachedDisplays()) {
|
||||
foreach ($attachments as $attachment ) {
|
||||
foreach ($attachments as $attachment) {
|
||||
$attached_options = $executable->displayHandlers->get($attachment)->getOption('displays');
|
||||
unset($attached_options[$id]);
|
||||
$executable->displayHandlers->get($attachment)->setOption('displays', $attached_options);
|
||||
|
|
|
@ -118,6 +118,7 @@
|
|||
<rule ref="../vendor/drupal/coder/coder_sniffer/Drupal/Sniffs/Semantics/PregSecuritySniff.php"/>
|
||||
<rule ref="../vendor/drupal/coder/coder_sniffer/Drupal/Sniffs/Semantics/TInHookMenuSniff.php"/>
|
||||
<rule ref="../vendor/drupal/coder/coder_sniffer/Drupal/Sniffs/Semantics/TInHookSchemaSniff.php"/>
|
||||
<rule ref="../vendor/drupal/coder/coder_sniffer/Drupal/Sniffs/WhiteSpace/CloseBracketSpacingSniff.php"/>
|
||||
<rule ref="../vendor/drupal/coder/coder_sniffer/Drupal/Sniffs/WhiteSpace/CommaSniff.php"/>
|
||||
<rule ref="../vendor/drupal/coder/coder_sniffer/Drupal/Sniffs/WhiteSpace/EmptyLinesSniff.php"/>
|
||||
<rule ref="../vendor/drupal/coder/coder_sniffer/Drupal/Sniffs/WhiteSpace/NamespaceSniff.php"/>
|
||||
|
|
|
@ -336,7 +336,7 @@ class ConfigSchemaTest extends KernelTestBase {
|
|||
$effect = $effects->get($uuid)->getElements();
|
||||
$this->assertTrue(!$effect['data']->isEmpty() && $effect['id']->getValue() == 'image_scale', 'Got data for the image scale effect from metadata.');
|
||||
$this->assertTrue($effect['data']->get('width') instanceof IntegerInterface, 'Got the right type for the scale effect width.');
|
||||
$this->assertEqual($effect['data']->get('width')->getValue(), 480, 'Got the right value for the scale effect width.' );
|
||||
$this->assertEqual($effect['data']->get('width')->getValue(), 480, 'Got the right value for the scale effect width.');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -131,7 +131,7 @@ class ConnectionTest extends DatabaseTestBase {
|
|||
try {
|
||||
$db->query('SELECT * FROM {test}; SELECT * FROM {test_people}',
|
||||
[],
|
||||
['allow_delimiter_in_query' => TRUE ]
|
||||
['allow_delimiter_in_query' => TRUE]
|
||||
);
|
||||
$this->fail('No PDO exception thrown for multiple statements.');
|
||||
}
|
||||
|
|
|
@ -87,12 +87,12 @@ class CacheableMetadataTest extends UnitTestCase {
|
|||
public function testAddCacheTags() {
|
||||
$metadata = new CacheableMetadata();
|
||||
$add_expected = [
|
||||
[[], [] ],
|
||||
[['foo:bar'], ['foo:bar'] ],
|
||||
[['foo:baz'], ['foo:bar', 'foo:baz'] ],
|
||||
[['axx:first', 'foo:baz'], ['axx:first', 'foo:bar', 'foo:baz'] ],
|
||||
[[], ['axx:first', 'foo:bar', 'foo:baz'] ],
|
||||
[['axx:first'], ['axx:first', 'foo:bar', 'foo:baz'] ],
|
||||
[[], []],
|
||||
[['foo:bar'], ['foo:bar']],
|
||||
[['foo:baz'], ['foo:bar', 'foo:baz']],
|
||||
[['axx:first', 'foo:baz'], ['axx:first', 'foo:bar', 'foo:baz']],
|
||||
[[], ['axx:first', 'foo:bar', 'foo:baz']],
|
||||
[['axx:first'], ['axx:first', 'foo:bar', 'foo:baz']],
|
||||
];
|
||||
|
||||
foreach ($add_expected as $data) {
|
||||
|
|
|
@ -320,7 +320,7 @@ class EntityAdapterUnitTest extends UnitTestCase {
|
|||
* @covers ::set
|
||||
*/
|
||||
public function testSet() {
|
||||
$id_items = [['value' => $this->id + 1] ];
|
||||
$id_items = [['value' => $this->id + 1]];
|
||||
|
||||
$this->fieldItemList->expects($this->once())
|
||||
->method('setValue')
|
||||
|
@ -334,7 +334,7 @@ class EntityAdapterUnitTest extends UnitTestCase {
|
|||
*/
|
||||
public function testSetWithoutData() {
|
||||
$this->entityAdapter->setValue(NULL);
|
||||
$id_items = [['value' => $this->id + 1] ];
|
||||
$id_items = [['value' => $this->id + 1]];
|
||||
$this->setExpectedException(MissingDataException::class);
|
||||
$this->entityAdapter->set('id', $id_items);
|
||||
}
|
||||
|
@ -397,7 +397,7 @@ class EntityAdapterUnitTest extends UnitTestCase {
|
|||
$definition = $this->entityAdapter->getDataDefinition();
|
||||
$this->assertInstanceOf('\Drupal\Core\Entity\TypedData\EntityDataDefinitionInterface', $definition);
|
||||
$this->assertEquals($definition->getEntityTypeId(), $this->entityTypeId);
|
||||
$this->assertEquals($definition->getBundles(), [$this->bundle ]);
|
||||
$this->assertEquals($definition->getBundles(), [$this->bundle]);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue