Issue #2851510 by klausi: Fix phpcs regressions by running phpcbf

8.4.x
xjm 2017-02-10 16:17:15 -06:00
parent 91736cadcb
commit 6ca61afd59
9 changed files with 8 additions and 8 deletions

View File

@ -39,7 +39,8 @@ class BookInstallTest extends WebTestBase {
// Install the Book module. // Install the Book module.
try { try {
$this->container->get('module_installer')->install(['book']); $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()); $this->fail("Expected exception thrown trying to install Book module: " . $e->getMessage());
} }
} }

View File

@ -167,4 +167,5 @@ class Node extends FieldableEntity {
$query->where('n.tnid <> 0 AND n.tnid <> n.nid'); $query->where('n.tnid <> 0 AND n.tnid <> n.nid');
} }
} }
} }

View File

@ -77,7 +77,7 @@ class NodeCreationTest extends NodeTestBase {
$admin_user = $this->drupalCreateUser(array('administer nodes', 'create page content')); $admin_user = $this->drupalCreateUser(array('administer nodes', 'create page content'));
$this->drupalLogin($admin_user); $this->drupalLogin($admin_user);
$this->drupalGet('node/add/page'); $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.');
} }
/** /**

View File

@ -84,5 +84,4 @@ class ExcludedFieldTokenTest extends ViewTestBase {
$this->assertIdentical($actual_json, json_encode($expected)); $this->assertIdentical($actual_json, json_encode($expected));
} }
} }

View File

@ -17,7 +17,7 @@ use Drupal\Core\Form\FormStateInterface;
* }, * },
* ) * )
*/ */
class ShapeOnlyColorEditableWidget extends WidgetBase { class ShapeOnlyColorEditableWidget extends WidgetBase {
/** /**
* {@inheritdoc} * {@inheritdoc}

View File

@ -7,7 +7,6 @@ use Drupal\Component\Plugin\Exception\PluginNotFoundException;
use Drupal\Core\Database\DatabaseExceptionWrapper; use Drupal\Core\Database\DatabaseExceptionWrapper;
use Drupal\Core\Plugin\Discovery\ContainerDeriverInterface; use Drupal\Core\Plugin\Discovery\ContainerDeriverInterface;
use Drupal\migrate\Exception\RequirementsException; use Drupal\migrate\Exception\RequirementsException;
use Drupal\migrate\Plugin\Migration;
use Drupal\migrate\Plugin\MigrationDeriverTrait; use Drupal\migrate\Plugin\MigrationDeriverTrait;
use Drupal\migrate_drupal\Plugin\MigrateCckFieldPluginManagerInterface; use Drupal\migrate_drupal\Plugin\MigrateCckFieldPluginManagerInterface;
use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\DependencyInjection\ContainerInterface;

View File

@ -162,4 +162,5 @@ class FilterTest extends PluginTestBase {
$this->drupalPostForm(NULL, [], t('Update preview')); $this->drupalPostForm(NULL, [], t('Update preview'));
$this->assertNoText('An illegal choice has been detected.'); $this->assertNoText('An illegal choice has been detected.');
} }
} }

View File

@ -2,8 +2,6 @@
namespace Drupal\FunctionalTests\Entity; namespace Drupal\FunctionalTests\Entity;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\Core\Entity\ContentEntityStorageInterface;
use Drupal\Core\Field\FieldStorageDefinitionInterface; use Drupal\Core\Field\FieldStorageDefinitionInterface;
use Drupal\field\Entity\FieldConfig; use Drupal\field\Entity\FieldConfig;
use Drupal\field\Entity\FieldStorageConfig; use Drupal\field\Entity\FieldStorageConfig;
@ -14,7 +12,7 @@ use Drupal\Tests\BrowserTestBase;
* *
* @group Entity * @group Entity
*/ */
class ContentEntityFormCorrectUserInputMappingOnFieldDeltaElementsTest extends BrowserTestBase { class ContentEntityFormCorrectUserInputMappingOnFieldDeltaElementsTest extends BrowserTestBase {
/** /**
* The ID of the type of the entity under test. * The ID of the type of the entity under test.

View File

@ -121,4 +121,5 @@ class EntityAccessCheckTest extends UnitTestCase {
$route_match->getParameters()->willReturn(new ParameterBag(['entity_type' => 'node', 'var_name' => $object])); $route_match->getParameters()->willReturn(new ParameterBag(['entity_type' => 'node', 'var_name' => $object]));
return $route_match->reveal(); return $route_match->reveal();
} }
} }