Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
0d6d22af
Verified
Commit
0d6d22af
authored
May 15, 2018
by
Lee Rowlands
Browse files
Issue
#2926120
by idebr, zaporylie, borisson_: @var tag must not end with a full stop
parent
251c9962
Changes
63
Hide whitespace changes
Inline
Side-by-side
core/lib/Drupal/Component/EventDispatcher/ContainerAwareEventDispatcher.php
View file @
0d6d22af
...
...
@@ -36,7 +36,7 @@ class ContainerAwareEventDispatcher implements EventDispatcherInterface {
/**
* The service container.
*
* @var \Symfony\Component\DependencyInjection\ContainerInterface
;
* @var \Symfony\Component\DependencyInjection\ContainerInterface
*/
protected
$container
;
...
...
core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php
View file @
0d6d22af
...
...
@@ -28,7 +28,7 @@ class QueryFactory implements QueryFactoryInterface, EventSubscriberInterface {
/**
* The config factory used by the config entity query.
*
* @var \Drupal\Core\Config\ConfigFactoryInterface
;
* @var \Drupal\Core\Config\ConfigFactoryInterface
*/
protected
$configFactory
;
...
...
core/lib/Drupal/Core/Controller/HtmlFormController.php
View file @
0d6d22af
...
...
@@ -15,7 +15,7 @@ class HtmlFormController extends FormController {
/**
* The class resolver.
*
* @var \Drupal\Core\DependencyInjection\ClassResolverInterface
;
* @var \Drupal\Core\DependencyInjection\ClassResolverInterface
*/
protected
$classResolver
;
...
...
core/lib/Drupal/Core/Form/EnforcedResponse.php
View file @
0d6d22af
...
...
@@ -23,7 +23,7 @@ class EnforcedResponse extends Response {
/**
* The wrapped response object.
*
* @var \Symfony\Component\HttpFoundation\Response
;
* @var \Symfony\Component\HttpFoundation\Response
*/
protected
$response
;
...
...
core/lib/Drupal/Core/Path/AliasManager.php
View file @
0d6d22af
...
...
@@ -22,7 +22,7 @@ class AliasManager implements AliasManagerInterface, CacheDecoratorInterface {
/**
* Cache backend service.
*
* @var \Drupal\Core\Cache\CacheBackendInterface
;
* @var \Drupal\Core\Cache\CacheBackendInterface
*/
protected
$cache
;
...
...
core/lib/Drupal/Core/Routing/AccessAwareRouter.php
View file @
0d6d22af
...
...
@@ -34,7 +34,7 @@ class AccessAwareRouter implements AccessAwareRouterInterface {
/**
* The account to use in access checks.
*
* @var \Drupal\Core\Session\AccountInterface
;
* @var \Drupal\Core\Session\AccountInterface
*/
protected
$account
;
...
...
core/lib/Drupal/Core/Session/UserSession.php
View file @
0d6d22af
...
...
@@ -28,7 +28,7 @@ class UserSession implements AccountInterface {
/**
* The Unix timestamp when the user last accessed the site.
*
* @var string
.
* @var string
*/
protected
$access
;
...
...
core/modules/automated_cron/src/EventSubscriber/AutomatedCron.php
View file @
0d6d22af
...
...
@@ -31,7 +31,7 @@ class AutomatedCron implements EventSubscriberInterface {
/**
* The state key value store.
*
* @var \Drupal\Core\State\StateInterface
;
* @var \Drupal\Core\State\StateInterface
*/
protected
$state
;
...
...
core/modules/block/tests/src/Kernel/BlockStorageUnitTest.php
View file @
0d6d22af
...
...
@@ -26,7 +26,7 @@ class BlockStorageUnitTest extends KernelTestBase {
/**
* The block storage.
*
* @var \Drupal\Core\Config\Entity\ConfigEntityStorageInterface
.
* @var \Drupal\Core\Config\Entity\ConfigEntityStorageInterface
*/
protected
$controller
;
...
...
core/modules/block_content/src/Plugin/Block/BlockContentBlock.php
View file @
0d6d22af
...
...
@@ -29,7 +29,7 @@ class BlockContentBlock extends BlockBase implements ContainerFactoryPluginInter
/**
* The Plugin Block Manager.
*
* @var \Drupal\Core\Block\BlockManagerInterface
.
* @var \Drupal\Core\Block\BlockManagerInterface
*/
protected
$blockManager
;
...
...
@@ -43,7 +43,7 @@ class BlockContentBlock extends BlockBase implements ContainerFactoryPluginInter
/**
* The Drupal account to use for checking for access to block.
*
* @var \Drupal\Core\Session\AccountInterface
.
* @var \Drupal\Core\Session\AccountInterface
*/
protected
$account
;
...
...
core/modules/ckeditor/tests/src/Kernel/CKEditorTest.php
View file @
0d6d22af
...
...
@@ -24,7 +24,7 @@ class CKEditorTest extends KernelTestBase {
/**
* An instance of the "CKEditor" text editor plugin.
*
* @var \Drupal\ckeditor\Plugin\Editor\CKEditor
;
* @var \Drupal\ckeditor\Plugin\Editor\CKEditor
*/
protected
$ckeditor
;
...
...
core/modules/comment/src/CommentForm.php
View file @
0d6d22af
...
...
@@ -41,7 +41,7 @@ class CommentForm extends ContentEntityForm {
/**
* The entity field manager.
*
* @var \Drupal\Core\Entity\EntityFieldManagerInterface
;
* @var \Drupal\Core\Entity\EntityFieldManagerInterface
*/
protected
$entityFieldManager
;
...
...
core/modules/comment/tests/src/Unit/CommentLinkBuilderTest.php
View file @
0d6d22af
...
...
@@ -60,7 +60,7 @@ class CommentLinkBuilderTest extends UnitTestCase {
protected
$timestamp
;
/**
* @var \Drupal\comment\CommentLinkBuilderInterface
;
* @var \Drupal\comment\CommentLinkBuilderInterface
*/
protected
$commentLinkBuilder
;
...
...
core/modules/config/src/Form/ConfigSingleImportForm.php
View file @
0d6d22af
...
...
@@ -62,7 +62,7 @@ class ConfigSingleImportForm extends ConfirmFormBase {
/**
* The configuration manager.
*
* @var \Drupal\Core\Config\ConfigManagerInterface
;
* @var \Drupal\Core\Config\ConfigManagerInterface
*/
protected
$configManager
;
...
...
core/modules/config/src/Form/ConfigSync.php
View file @
0d6d22af
...
...
@@ -64,7 +64,7 @@ class ConfigSync extends FormBase {
/**
* The configuration manager.
*
* @var \Drupal\Core\Config\ConfigManagerInterface
;
* @var \Drupal\Core\Config\ConfigManagerInterface
*/
protected
$configManager
;
...
...
core/modules/contact/src/Access/ContactPageAccess.php
View file @
0d6d22af
...
...
@@ -24,7 +24,7 @@ class ContactPageAccess implements AccessInterface {
/**
* The user data service.
*
* @var \Drupal\user\UserDataInterface
;
* @var \Drupal\user\UserDataInterface
*/
protected
$userData
;
...
...
core/modules/content_moderation/tests/src/Kernel/ContentModerationWorkflowTypeApiTest.php
View file @
0d6d22af
...
...
@@ -17,7 +17,7 @@ class ContentModerationWorkflowTypeApiTest extends KernelTestBase {
/**
* A workflow for testing.
*
* @var \Drupal\workflows\Entity\Workflow
;
* @var \Drupal\workflows\Entity\Workflow
*/
protected
$workflow
;
...
...
core/modules/editor/tests/src/Kernel/QuickEditIntegrationTest.php
View file @
0d6d22af
...
...
@@ -38,7 +38,7 @@ class QuickEditIntegrationTest extends QuickEditTestBase {
/**
* The metadata generator object to be tested.
*
* @var \Drupal\quickedit\MetadataGeneratorInterface
.php
* @var \Drupal\quickedit\MetadataGeneratorInterface
*/
protected
$metadataGenerator
;
...
...
core/modules/field/tests/src/Functional/FieldHelpTest.php
View file @
0d6d22af
...
...
@@ -14,7 +14,7 @@ class FieldHelpTest extends BrowserTestBase {
/**
* Modules to enable.
*
* @var array
.
* @var array
*/
public
static
$modules
=
[
'field'
,
'help'
];
...
...
core/modules/field/tests/src/Kernel/ConfigFieldDefinitionTest.php
View file @
0d6d22af
...
...
@@ -15,7 +15,7 @@ class ConfigFieldDefinitionTest extends FieldKernelTestBase {
/**
* The entity manager service.
*
* @var \Drupal\Core\Entity\EntityManagerInterface
;
* @var \Drupal\Core\Entity\EntityManagerInterface
*/
protected
$entityManager
;
...
...
Prev
1
2
3
4
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment