Issue #2901730 by mfernea, ankitjain28may, idebr: Fix 'Squiz.WhiteSpace.FunctionSpacing' coding standard

8.6.x
Alex Pott 2018-05-11 10:26:36 +01:00
parent 4cf7a965e9
commit b8f93d5b61
No known key found for this signature in database
GPG Key ID: 31905460D4A69276
295 changed files with 198 additions and 186 deletions

View File

@ -99,7 +99,6 @@ function file_stream_wrapper_valid_scheme($scheme) {
return \Drupal::service('file_system')->validScheme($scheme);
}
/**
* Returns the part of a URI after the schema.
*
@ -926,7 +925,6 @@ function file_unmanaged_delete_recursive($path, $callback = NULL) {
return file_unmanaged_delete($path);
}
/**
* Moves an uploaded file to a new location.
*

View File

@ -380,7 +380,6 @@ function _drupal_rewrite_settings_is_simple($type, $value) {
return $is_integer || $is_float || $is_string || $is_boolean_or_null;
}
/**
* Helper for drupal_rewrite_settings().
*
@ -451,7 +450,6 @@ function _drupal_rewrite_settings_dump($variable, $variable_name) {
return $return;
}
/**
* Helper for drupal_rewrite_settings().
*

View File

@ -10,6 +10,7 @@ use Drupal\Component\Utility\Unicode;
/**
* Returns Unicode library status and errors.
*/
/**
* Moves unicode_requirements() logic to system_requirements().
*

View File

@ -141,7 +141,6 @@ class Drupal {
return static::$container !== NULL;
}
/**
* Retrieves a service from the container.
*

View File

@ -333,7 +333,6 @@ class Inspector {
return FALSE;
}
/**
* Asserts that all members are strings matching a regular expression.
*

View File

@ -477,7 +477,6 @@ class DateTimePlus {
return $format;
}
/**
* Examines getLastErrors() to see what errors to report.
*

View File

@ -282,7 +282,6 @@ class OptimizedPhpArrayDumper extends Dumper {
return $code;
}
/**
* Dumps a collection to a PHP array.
*

View File

@ -259,7 +259,6 @@ class Random {
return $output;
}
/**
* Create a placeholder image.
*

View File

@ -8,6 +8,7 @@ namespace Drupal\Component\Uuid;
* @see http://php.net/com_create_guid
*/
class Com implements UuidInterface {
/**
* {@inheritdoc}
*/

View File

@ -24,7 +24,6 @@ class AccessResultForbidden extends AccessResult implements AccessResultReasonIn
$this->reason = $reason;
}
/**
* {@inheritdoc}
*/

View File

@ -142,6 +142,7 @@ class CheckProvider implements CheckProviderInterface, ContainerAwareInterface {
return $checks;
}
/**
* Compiles a mapping of requirement keys to access checker service IDs.
*/

View File

@ -15,7 +15,6 @@ use Symfony\Component\Routing\RouteCollection;
*/
interface CheckProviderInterface {
/**
* For each route, saves a list of applicable access checks to the route.
*

View File

@ -8,6 +8,7 @@ namespace Drupal\Core\Ajax;
* @ingroup ajax
*/
class OpenModalDialogCommand extends OpenDialogCommand {
/**
* Constructs an OpenModalDialog object.
*

View File

@ -228,7 +228,6 @@ class DatabaseStorage implements StorageInterface {
->execute();
}
/**
* Implements Drupal\Core\Config\StorageInterface::rename().
*

View File

@ -41,7 +41,6 @@ interface ThirdPartySettingsInterface {
*/
public function getThirdPartySetting($module, $key, $default = NULL);
/**
* Gets all third-party settings of a given module.
*

View File

@ -80,7 +80,6 @@ class ControllerResolver extends BaseControllerResolver implements ControllerRes
return $callable;
}
/**
* {@inheritdoc}
*/

View File

@ -165,7 +165,6 @@ class Connection extends DatabaseConnection {
return $pdo;
}
/**
* Destructor for the SQLite connection.
*

View File

@ -8,6 +8,7 @@ use Drupal\Core\Database\Query\Select as QuerySelect;
* SQLite implementation of \Drupal\Core\Database\Query\Select.
*/
class Select extends QuerySelect {
public function forUpdate($set = TRUE) {
// SQLite does not support FOR UPDATE so nothing to do.
return $this;

View File

@ -11,6 +11,7 @@ use Drupal\Core\Database\Query\Truncate as QueryTruncate;
* exactly the effect (it is implemented by DROPing the table).
*/
class Truncate extends QueryTruncate {
public function __toString() {
// Create a sanitized comment string to prepend to the query.
$comments = $this->connection->makeComment($this->comments);

View File

@ -334,7 +334,6 @@ class DateHelper {
return !$required ? $none + $range : $range;
}
/**
* Constructs an array of hours.
*

View File

@ -68,7 +68,6 @@ class EntityRouteEnhancer implements EnhancerInterface {
return $defaults;
}
/**
* Update defaults for an entity list.
*

View File

@ -836,7 +836,6 @@ class EntityType extends PluginDefinition implements EntityTypeInterface {
return $this->group;
}
/**
* {@inheritdoc}
*/

View File

@ -64,7 +64,6 @@ class Query extends QueryBase implements QueryInterface {
$this->connection = $connection;
}
/**
* {@inheritdoc}
*/

View File

@ -65,7 +65,6 @@ class QueryAggregate extends Query implements QueryAggregateInterface {
return $this->conditionAggregate->notExists($field, $function, $langcode);
}
/**
* Adds the aggregations to the query.
*
@ -126,7 +125,6 @@ class QueryAggregate extends Query implements QueryAggregateInterface {
return $this;
}
/**
* Overrides \Drupal\Core\Entity\Query\Sql\Query::finish().
*

View File

@ -97,7 +97,6 @@ class ActiveLinkResponseFilter implements EventSubscriberInterface {
));
}
/**
* Sets the "is-active" class on relevant links.
*

View File

@ -34,7 +34,6 @@ class EnforcedFormResponseSubscriber implements EventSubscriberInterface {
}
}
/**
* {@inheritdoc}
*/

View File

@ -43,7 +43,6 @@ class Fast404ExceptionHtmlSubscriber extends HttpExceptionSubscriberBase {
$this->httpKernel = $http_kernel;
}
/**
* {@inheritdoc}
*/

View File

@ -429,7 +429,6 @@ class ModuleHandler implements ModuleHandlerInterface {
return $result;
}
/**
* Triggers an E_USER_DEPRECATED error if any module implements the hook.
*

View File

@ -92,7 +92,6 @@ interface ThemeHandlerInterface {
*/
public function listInfo();
/**
* Adds a theme extension to the internal listing.
*

View File

@ -263,7 +263,6 @@ abstract class FieldConfigBase extends ConfigEntityBase implements FieldConfigIn
return $changed;
}
/**
* {@inheritdoc}
*/

View File

@ -105,7 +105,6 @@ class DecimalItem extends NumericItemBase {
return $constraints;
}
/**
* {@inheritdoc}
*/
@ -154,7 +153,6 @@ class DecimalItem extends NumericItemBase {
return $values;
}
/**
* Helper method to get the number of decimal digits out of a decimal number.
*

View File

@ -125,7 +125,6 @@ class WidgetPluginManager extends DefaultPluginManager {
return new $plugin_class($plugin_id, $plugin_definition, $configuration['field_definition'], $configuration['settings'], $configuration['third_party_settings']);
}
/**
* Merges default values for widget configuration.
*

View File

@ -46,7 +46,6 @@ abstract class ImageToolkitBase extends PluginBase implements ImageToolkitInterf
*/
protected $logger;
/**
* Constructs an ImageToolkitBase object.
*

View File

@ -69,7 +69,6 @@ class InaccessibleMenuLink extends MenuLinkBase {
return $this->wrappedLink->getCacheMaxAge();
}
/**
* {@inheritdoc}
*/

View File

@ -93,7 +93,6 @@ class MenuLinkManager implements MenuLinkManagerInterface {
*/
protected $moduleHandler;
/**
* Constructs a \Drupal\Core\Menu\MenuLinkManager object.
*

View File

@ -86,7 +86,6 @@ class PathProcessorManager implements InboundPathProcessorInterface, OutboundPat
return $this->sortedInbound;
}
/**
* Adds an outbound processor object to the $outboundProcessors property.
*

View File

@ -123,7 +123,6 @@ class Context extends ComponentContext implements ContextInterface {
return $this->contextData;
}
/**
* {@inheritdoc}
*/

View File

@ -27,7 +27,6 @@ class QueueFactory implements ContainerAwareInterface {
*/
protected $settings;
/**
* Constructs a queue factory.
*/

View File

@ -24,7 +24,6 @@ interface AccessAwareRouterInterface extends RouterInterface, RequestMatcherInte
*/
public function matchRequest(Request $request);
/**
* {@inheritdoc}
*

View File

@ -69,7 +69,6 @@ abstract class LocalReadOnlyStream extends LocalStream {
return TRUE;
}
/**
* Support for fwrite(), file_put_contents() etc.
*

View File

@ -27,6 +27,7 @@ class ThemeAccessCheck implements AccessInterface {
public function __construct(ThemeHandlerInterface $theme_handler) {
$this->themeHandler = $theme_handler;
}
/**
* Checks access to the theme for routing.
*

View File

@ -56,7 +56,6 @@ class ConstraintManager extends DefaultPluginManager {
return $this->discovery;
}
/**
* Creates a validation constraint.
*

View File

@ -239,7 +239,6 @@ class Item extends ContentEntityBase implements ItemInterface {
return Feed::load($this->getFeedId())->getCacheTags();
}
/**
* Entity URI callback.
*/

View File

@ -57,7 +57,6 @@ class AggregatorFeedBlock extends BlockBase implements ContainerFactoryPluginInt
$this->itemStorage = $item_storage;
}
/**
* {@inheritdoc}
*/
@ -71,7 +70,6 @@ class AggregatorFeedBlock extends BlockBase implements ContainerFactoryPluginInt
);
}
/**
* {@inheritdoc}
*/

View File

@ -21,6 +21,7 @@ use Drupal\Core\Url;
* )
*/
class AggregatorTitleFormatter extends FormatterBase {
/**
* {@inheritdoc}
*/

View File

@ -8,6 +8,7 @@ namespace Drupal\Tests\aggregator\Functional;
* @group aggregator
*/
class DeleteFeedItemTest extends AggregatorTestBase {
/**
* Tests running "delete items" from 'admin/config/services/aggregator' page.
*/

View File

@ -10,6 +10,7 @@ use Drupal\aggregator\Entity\Feed;
* @group aggregator
*/
class UpdateFeedItemTest extends AggregatorTestBase {
/**
* Tests running "update items" from 'admin/config/services/aggregator' page.
*/

View File

@ -8,6 +8,7 @@ namespace Drupal\Tests\aggregator\Functional;
* @group aggregator
*/
class UpdateFeedTest extends AggregatorTestBase {
/**
* Creates a feed and attempts to update it.
*/

View File

@ -67,7 +67,6 @@ class BlockAccessControlHandler extends EntityAccessControlHandler implements En
$this->contextRepository = $context_repository;
}
/**
* {@inheritdoc}
*/

View File

@ -31,7 +31,6 @@ class BlockContentFieldFilterTest extends BlockContentTestBase {
*/
public $blockContentInfos = [];
/**
* {@inheritdoc}
*/

View File

@ -110,7 +110,6 @@ interface BookOutlineStorageInterface {
*/
public function insert($link, $parents);
/**
* Updates book reference for links that were moved between books.
*

View File

@ -12,6 +12,7 @@ use Drupal\node\Entity\Node;
* @group comment
*/
class CommentPagerTest extends CommentTestBase {
/**
* Confirms comment paging works correctly with flat and threaded comments.
*/

View File

@ -10,6 +10,7 @@ use Drupal\comment\CommentManagerInterface;
* @group comment
*/
class CommentThreadingTest extends CommentTestBase {
/**
* Tests the comment threading.
*/

View File

@ -9,6 +9,7 @@ namespace Drupal\Tests\comment\Functional;
* @group comment
*/
class CommentTitleTest extends CommentTestBase {
/**
* Tests markup for comments with empty titles.
*/

View File

@ -52,7 +52,6 @@ class CommentUninstallTest extends BrowserTestBase {
}
}
/**
* Tests if uninstallation succeeds if the field has been deleted beforehand.
*/

View File

@ -46,7 +46,6 @@ class CommentRestExportTest extends CommentTestBase {
$this->drupalLogin($user);
}
/**
* Test comment row.
*/

View File

@ -23,7 +23,6 @@ class WizardTest extends WizardTestBase {
*/
public static $modules = ['node', 'comment'];
/**
* {@inheritdoc}
*/

View File

@ -324,7 +324,9 @@ class CommentLinkBuilderTest extends UnitTestCase {
namespace Drupal\comment;
if (!function_exists('history_read')) {
function history_read() {
return 0;
}
}

View File

@ -79,7 +79,6 @@ class ConfigInstallProfileUnmetDependenciesTest extends InstallerTestBase {
// This step is not reached due to the exception.
}
/**
* Confirms that the installation succeeded.
*/

View File

@ -24,7 +24,6 @@ class ConfigInstallProfileOverrideTest extends BrowserTestBase {
*/
protected $profile = 'testing_config_overrides';
/**
* Tests install profile config changes.
*/

View File

@ -27,7 +27,6 @@ function contact_storage_test_entity_base_field_info(EntityTypeInterface $entity
}
}
/**
* Implements hook_entity_type_alter().
*/
@ -56,6 +55,7 @@ function contact_storage_test_form_contact_form_form_alter(&$form, FormStateInte
];
$form['#entity_builders'][] = 'contact_storage_test_contact_form_form_builder';
}
/**
* Entity builder for the contact form edit form with third party options.
*

View File

@ -119,7 +119,6 @@ class EntityTypeInfo implements ContainerInjectionInterface {
);
}
/**
* Adds Moderation configuration to appropriate entity types.
*

View File

@ -164,6 +164,7 @@ function _content_translation_form_language_content_settings_form_alter(array &$
$form['#validate'][] = 'content_translation_form_language_content_settings_validate';
$form['#submit'][] = 'content_translation_form_language_content_settings_submit';
}
/**
* Checks whether translatability should be configurable for a field.
*

View File

@ -116,7 +116,6 @@ class Standard extends Xss implements EditorXssFilterInterface {
return $html;
}
/**
* Get all allowed tags from a restrictions data structure.
*

View File

@ -43,7 +43,6 @@
* @see plugin_api
*/
/**
* Perform alterations on Field API field types.
*

View File

@ -85,7 +85,6 @@ class FieldUninstallValidator implements ModuleUninstallValidatorInterface {
return $this->fieldStorageConfigStorage->loadByProperties(['module' => $module, 'include_deleted' => TRUE]);
}
/**
* Returns the label for a specified field type.
*

View File

@ -130,7 +130,6 @@ function field_test_field_widget_multivalue_test_field_widget_multiple_single_va
_field_test_alter_widget("hook_field_widget_multivalue_WIDGET_TYPE_form_alter", $elements, $form_state, $context);
}
/**
* Sets up alterations for widget alter tests.
*
@ -164,7 +163,6 @@ function field_test_query_efq_table_prefixing_test_alter(&$query) {
$query->join('entity_test', 'et2', '%alias.id = entity_test.id');
}
/**
* Implements hook_query_TAG_alter() for tag 'efq_metadata_test'.
*

View File

@ -302,7 +302,6 @@ class EntityReferenceFieldTranslatedReferenceViewTest extends BrowserTestBase {
return $node;
}
/**
* Create the referenced entity.
*/

View File

@ -332,7 +332,6 @@ class EntityReferenceFormatterTest extends EntityKernelTestBase {
$this->assertEquals($expected_occurrences, $actual_occurrences);
}
/**
* Tests the label formatter.
*/

View File

@ -88,6 +88,7 @@ class File extends DrupalSqlBase {
'is_public' => $this->t('TRUE if the files directory is public otherwise FALSE.'),
];
}
/**
* {@inheritdoc}
*/

View File

@ -8,6 +8,7 @@ namespace Drupal\file\Tests;
* @group file
*/
class DownloadTest extends FileManagedTestBase {
protected function setUp() {
parent::setUp();
// Clear out any hook calls.

View File

@ -10,6 +10,7 @@ use Drupal\file\Entity\File;
* @group file
*/
class FileFieldPathTest extends FileFieldTestBase {
/**
* Tests the normal formatter display on node display.
*/

View File

@ -10,6 +10,7 @@ use Drupal\file\Entity\File;
* @group file
*/
class FileFieldRevisionTest extends FileFieldTestBase {
/**
* Tests creating multiple revisions of a node and managing attached files.
*

View File

@ -10,6 +10,7 @@ namespace Drupal\file\Tests;
* that aren't related to fields into it.
*/
class FileManagedFileElementTest extends FileFieldTestBase {
/**
* Tests the managed_file element type.
*/

View File

@ -13,6 +13,7 @@ use Drupal\file\Entity\File;
* @group file
*/
class FileTokenReplaceTest extends FileFieldTestBase {
/**
* Creates a file, then tests the tokens generated from it.
*/

View File

@ -10,6 +10,7 @@ use Drupal\file\Entity\File;
* @group file
*/
class CopyTest extends FileManagedUnitTestBase {
/**
* Test file copying in the normal, base case.
*/

View File

@ -10,6 +10,7 @@ use Drupal\file\Entity\File;
* @group file
*/
class DeleteTest extends FileManagedUnitTestBase {
/**
* Tries deleting a normal file (as opposed to a directory, symlink, etc).
*/

View File

@ -10,6 +10,7 @@ use Drupal\file\Entity\File;
* @group file
*/
class LoadTest extends FileManagedUnitTestBase {
/**
* Try to load a non-existent file by fid.
*/

View File

@ -10,6 +10,7 @@ use Drupal\file\Entity\File;
* @group file
*/
class MoveTest extends FileManagedUnitTestBase {
/**
* Move a normal file.
*/

View File

@ -10,6 +10,7 @@ use Drupal\file\Entity\File;
* @group file
*/
class SaveDataTest extends FileManagedUnitTestBase {
/**
* Test the file_save_data() function when no filename is provided.
*/

View File

@ -10,6 +10,7 @@ use Drupal\file\Entity\File;
* @group file
*/
class SaveTest extends FileManagedUnitTestBase {
public function testFileSave() {
// Create a new file entity.
$file = File::create([

View File

@ -10,6 +10,7 @@ use Drupal\file\Entity\File;
* @group file
*/
class SpaceUsedTest extends FileManagedUnitTestBase {
protected function setUp() {
parent::setUp();

View File

@ -15,6 +15,7 @@ use Drupal\node\Entity\NodeType;
* @group file
*/
class UsageTest extends FileManagedUnitTestBase {
/**
* Tests \Drupal\file\FileUsage\DatabaseFileUsageBackend::listUsage().
*/

View File

@ -8,6 +8,7 @@ namespace Drupal\Tests\file\Kernel;
* @group file
*/
class ValidateTest extends FileManagedUnitTestBase {
/**
* Test that the validators passed into are checked.
*/

View File

@ -137,7 +137,6 @@ class ValidatorTest extends FileManagedUnitTestBase {
$this->assertEqual(count($errors), 1, 'An error reported for 0 length filename.', 'File');
}
/**
* Test file_validate_size().
*/

View File

@ -388,7 +388,6 @@ class FilterKernelTest extends KernelTestBase {
}
}
/**
* Tests filter settings, defaults, access restrictions and similar.
*

View File

@ -34,7 +34,6 @@ class ForumIntegrationTest extends ViewTestBase {
ViewTestData::createTestViews(get_class($this), ['forum_test_views']);
}
/**
* Tests the integration.
*/

View File

@ -33,7 +33,6 @@ function hook_hal_type_uri_alter(&$uri, $context = []) {
}
}
/**
* Alter the HAL relation URI.
*

View File

@ -169,7 +169,6 @@ class EntityReferenceItemNormalizer extends FieldItemNormalizer implements UuidR
return $normalized;
}
/**
* {@inheritdoc}
*/

View File

@ -26,7 +26,6 @@ class FileNormalizeTest extends NormalizerTestBase {
$this->installEntitySchema('file');
}
/**
* Tests the normalize function.
*/

View File

@ -17,7 +17,6 @@ use Drupal\Core\Cache\CacheableDependencyInterface;
*/
interface HelpSectionPluginInterface extends PluginInspectionInterface, CacheableDependencyInterface {
/**
* Returns the title of the help section.
*

View File

@ -14,6 +14,7 @@ use Drupal\help\Plugin\HelpSection\HelpSectionPluginBase;
* )
*/
class EmptyHelpSection extends HelpSectionPluginBase {
/**
* {@inheritdoc}
*/

View File

@ -25,6 +25,7 @@ class ImageStyleDeleteForm extends EntityDeleteForm {
public function getQuestion() {
return $this->t('Optionally select a style before deleting %style', ['%style' => $this->entity->label()]);
}
/**
* {@inheritdoc}
*/

View File

@ -42,7 +42,6 @@ interface ImageStyleInterface extends ConfigEntityInterface {
*/
public function setName($name);
/**
* Returns the URI of this image when using this style.
*

View File

@ -29,7 +29,6 @@ class NegotiationBrowserDeleteForm extends ConfirmFormBase {
return ['language.mappings'];
}
/**
* {@inheritdoc}
*/

View File

@ -60,7 +60,6 @@ class PathProcessorLanguage implements InboundPathProcessorInterface, OutboundPa
*/
protected $configSubscriber;
/**
* Constructs a PathProcessorLanguage object.
*

View File

@ -57,7 +57,6 @@ class LanguageBlock extends BlockBase implements ContainerFactoryPluginInterface
$this->pathMatcher = $path_matcher;
}
/**
* {@inheritdoc}
*/
@ -71,7 +70,6 @@ class LanguageBlock extends BlockBase implements ContainerFactoryPluginInterface
);
}
/**
* {@inheritdoc}
*/

View File

@ -17,6 +17,7 @@ class MigrateLanguageContentSettingsTest extends MigrateDrupal7TestBase {
* {@inheritdoc}
*/
public static $modules = ['node', 'text', 'language', 'content_translation', 'menu_ui'];
/**
* {@inheritdoc}
*/

View File

@ -256,7 +256,9 @@ class LanguageNegotiationUrlTest extends UnitTestCase {
namespace Drupal\language\Plugin\LanguageNegotiation;
if (!function_exists('base_path')) {
function base_path() {
return '/';
}
}

View File

@ -398,7 +398,6 @@ class LinkWidget extends WidgetBase {
return $values;
}
/**
* {@inheritdoc}
*

Some files were not shown because too many files have changed in this diff Show More