Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
5439b769
Commit
5439b769
authored
Feb 06, 2014
by
webchick
Browse files
Issue
#2187063
by Les Lim: Fix @inheritdoc typos throughout core.
parent
0110b8ed
Changes
16
Hide whitespace changes
Inline
Side-by-side
core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php
View file @
5439b769
...
...
@@ -62,7 +62,7 @@ public function get($entity_type, $conjunction, EntityManagerInterface $entity_m
}
/**
* @inheritdoc
*
{
@inheritdoc
}
*/
public
function
getAggregate
(
$entity_type
,
$conjunction
,
EntityManagerInterface
$entity_manager
)
{
throw
new
QueryException
(
'Aggregation over configuration entities is not supported'
);
...
...
core/lib/Drupal/Core/Routing/LazyLoadingRouteCollection.php
View file @
5439b769
...
...
@@ -95,7 +95,7 @@ protected function loadNextElements($offset) {
}
/**
* {inheritdoc}
* {
@
inheritdoc}
*/
public
function
count
()
{
if
(
!
isset
(
$this
->
count
))
{
...
...
core/lib/Drupal/Core/Routing/RouteBuilderStatic.php
View file @
5439b769
...
...
@@ -20,7 +20,7 @@ class RouteBuilderStatic implements RouteBuilderInterface {
protected
$rebuildNeeded
=
FALSE
;
/**
* @inheritdoc
*
{
@inheritdoc
}
*/
public
function
rebuild
()
{
// @todo Add the route for the batch pages when that conversion happens,
...
...
@@ -28,7 +28,7 @@ public function rebuild() {
}
/**
* @inheritdoc
*
{
@inheritdoc
}
*/
public
function
rebuildIfNeeded
(){
if
(
$this
->
rebuildNeeded
&&
$this
->
rebuild
())
{
...
...
@@ -39,7 +39,7 @@ public function rebuildIfNeeded(){
}
/**
* @inheritdoc
*
{
@inheritdoc
}
*/
public
function
setRebuildNeeded
()
{
$this
->
rebuildNeeded
=
TRUE
;
...
...
core/lib/Drupal/Core/Theme/ThemeNegotiator.php
View file @
5439b769
...
...
@@ -118,7 +118,7 @@ public function getActiveTheme() {
}
/**
* {@inheritdoc
* {@inheritdoc
}
*/
public
function
applies
(
Request
$request
)
{
return
TRUE
;
...
...
core/modules/aggregator/lib/Drupal/aggregator/Controller/AggregatorController.php
View file @
5439b769
...
...
@@ -40,7 +40,7 @@ public function __construct(Connection $database) {
}
/**
* {inheritdoc}
* {
@
inheritdoc}
*/
public
static
function
create
(
ContainerInterface
$container
)
{
return
new
static
(
...
...
core/modules/aggregator/lib/Drupal/aggregator/Entity/Item.php
View file @
5439b769
...
...
@@ -106,98 +106,98 @@ public static function baseFieldDefinitions($entity_type) {
}
/**
* @inheritdoc
*
{
@inheritdoc
}
*/
public
function
getFeedId
()
{
return
$this
->
get
(
'fid'
)
->
target_id
;
}
/**
* @inheritdoc
*
{
@inheritdoc
}
*/
public
function
setFeedId
(
$fid
)
{
return
$this
->
set
(
'fid'
,
$fid
);
}
/**
* @inheritdoc
*
{
@inheritdoc
}
*/
public
function
getTitle
()
{
return
$this
->
get
(
'title'
)
->
value
;
}
/**
* @inheritdoc
*
{
@inheritdoc
}
*/
public
function
setTitle
(
$title
)
{
return
$this
->
set
(
'title'
,
$title
);
}
/**
* @inheritdoc
*
{
@inheritdoc
}
*/
public
function
getLink
()
{
return
$this
->
get
(
'link'
)
->
value
;
}
/**
* @inheritdoc
*
{
@inheritdoc
}
*/
public
function
setLink
(
$link
)
{
return
$this
->
set
(
'link'
,
$link
);
}
/**
* @inheritdoc
*
{
@inheritdoc
}
*/
public
function
getAuthor
()
{
return
$this
->
get
(
'author'
)
->
value
;
}
/**
* @inheritdoc
*
{
@inheritdoc
}
*/
public
function
setAuthor
(
$author
)
{
return
$this
->
set
(
'author'
,
$author
);
}
/**
* @inheritdoc
*
{
@inheritdoc
}
*/
public
function
getDescription
()
{
return
$this
->
get
(
'description'
)
->
value
;
}
/**
* @inheritdoc
*
{
@inheritdoc
}
*/
public
function
setDescription
(
$description
)
{
return
$this
->
set
(
'description'
,
$description
);
}
/**
* @inheritdoc
*
{
@inheritdoc
}
*/
public
function
getPostedTime
()
{
return
$this
->
get
(
'timestamp'
)
->
value
;
}
/**
* @inheritdoc
*
{
@inheritdoc
}
*/
public
function
setPostedTime
(
$timestamp
)
{
return
$this
->
set
(
'timestamp'
,
$timestamp
);
}
/**
* @inheritdoc
*
{
@inheritdoc
}
*/
public
function
getGuid
()
{
return
$this
->
get
(
'guid'
)
->
value
;
}
/**
* @inheritdoc
*
{
@inheritdoc
}
*/
public
function
setGuid
(
$guid
)
{
return
$this
->
set
(
'guid'
,
$guid
);
...
...
core/modules/config_translation/lib/Drupal/config_translation/Controller/ConfigTranslationListController.php
View file @
5439b769
...
...
@@ -45,7 +45,7 @@ public function __construct(ConfigMapperManagerInterface $mapper_manager, $confi
}
/**
* {inheritdoc}
* {
@
inheritdoc}
*/
public
static
function
create
(
ContainerInterface
$container
)
{
return
new
static
(
...
...
core/modules/edit/js/models/EntityModel.js
View file @
5439b769
...
...
@@ -56,7 +56,7 @@
},
/**
* @inheritdoc
*
{
@inheritdoc
}
*/
initialize
:
function
()
{
this
.
set
(
'
fields
'
,
new
Drupal
.
edit
.
FieldCollection
());
...
...
@@ -511,7 +511,7 @@
},
/**
* @inheritdoc
*
{
@inheritdoc
}
*/
destroy
:
function
(
options
)
{
Drupal
.
edit
.
BaseModel
.
prototype
.
destroy
.
call
(
this
,
options
);
...
...
core/modules/field_ui/lib/Drupal/field_ui/DisplayOverview.php
View file @
5439b769
...
...
@@ -154,7 +154,7 @@ protected function getDisplayType() {
}
/**
* {@inheritdoc
* {@inheritdoc
}
*/
protected
function
getTableHeader
()
{
return
array
(
...
...
core/modules/field_ui/lib/Drupal/field_ui/FormDisplayOverview.php
View file @
5439b769
...
...
@@ -121,7 +121,7 @@ protected function getDisplayType() {
}
/**
* {@inheritdoc
* {@inheritdoc
}
*/
protected
function
getTableHeader
()
{
return
array
(
...
...
core/modules/forum/lib/Drupal/forum/Form/Overview.php
View file @
5439b769
...
...
@@ -40,7 +40,7 @@ public function __construct(EntityManagerInterface $entity_manager, ModuleHandle
}
/**
* {@inheritdoc}
.
* {@inheritdoc}
*/
public
static
function
create
(
ContainerInterface
$container
)
{
return
new
static
(
...
...
core/modules/menu_link/lib/Drupal/menu_link/Entity/MenuLink.php
View file @
5439b769
...
...
@@ -537,7 +537,7 @@ public function postSave(EntityStorageControllerInterface $storage_controller, $
}
/**
* @inheritdoc}
*
{
@inheritdoc}
*/
public
static
function
postLoad
(
EntityStorageControllerInterface
$storage_controller
,
array
&
$entities
)
{
parent
::
postLoad
(
$storage_controller
,
$entities
);
...
...
core/modules/system/lib/Drupal/system/Plugin/views/field/BulkForm.php
View file @
5439b769
...
...
@@ -75,7 +75,7 @@ public function init(ViewExecutable $view, DisplayPluginBase $display, array &$o
}
/**
* {@inheritdoc
}
* {@inheritdoc}
*/
protected
function
defineOptions
()
{
$options
=
parent
::
defineOptions
();
...
...
@@ -90,7 +90,7 @@ protected function defineOptions() {
}
/**
* {@inheritdoc
}
* {@inheritdoc}
*/
public
function
buildOptionsForm
(
&
$form
,
&
$form_state
)
{
$form
[
'action_title'
]
=
array
(
...
...
core/modules/system/lib/Drupal/system/Tests/Routing/MockRouteProvider.php
View file @
5439b769
...
...
@@ -76,14 +76,14 @@ public function getRoutesByPattern($pattern) {
}
/**
* @inheritdoc}
*
{
@inheritdoc}
*/
public
function
getAllRoutes
()
{
return
$this
->
routes
->
all
();
}
/**
* @inheritdoc}
*
{
@inheritdoc}
*/
public
function
reset
()
{
$this
->
routes
=
array
();
...
...
core/modules/user/tests/modules/user_form_test/lib/Drupal/user_form_test/Form/TestCurrentPassword.php
View file @
5439b769
...
...
@@ -58,7 +58,7 @@ public function buildForm(array $form, array &$form_state, UserInterface $user =
}
/**
* {@inheritdoc}
.
* {@inheritdoc}
*/
public
function
submitForm
(
array
&
$form
,
array
&
$form_state
)
{
drupal_set_message
(
$this
->
t
(
'The password has been validated and the form submitted successfully.'
));
...
...
core/modules/views/lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php
View file @
5439b769
...
...
@@ -198,7 +198,7 @@ public function getSorts() {
}
/**
* {@inheritdoc}
Drupal\views\Plugin\views\wizard\WizardInterface::buildForm().
* {@inheritdoc}
*/
public
function
buildForm
(
array
$form
,
array
&
$form_state
)
{
$style_options
=
views_fetch_plugin_names
(
'style'
,
'normal'
,
array
(
$this
->
base_table
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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