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
47fcaa09
Commit
47fcaa09
authored
Nov 04, 2016
by
alexpott
Browse files
Issue
#2824727
by martin107: Malformed inheritdoc prevents Pharborist scripts from working
parent
a61efd82
Changes
5
Hide whitespace changes
Inline
Side-by-side
core/lib/Drupal/Component/Datetime/Time.php
View file @
47fcaa09
...
...
@@ -27,28 +27,28 @@ public function __construct(RequestStack $request_stack) {
}
/**
*
@
{inheritdoc}
* {
@
inheritdoc}
*/
public
function
getRequestTime
()
{
return
$this
->
requestStack
->
getCurrentRequest
()
->
server
->
get
(
'REQUEST_TIME'
);
}
/**
*
@
{inheritdoc}
* {
@
inheritdoc}
*/
public
function
getRequestMicroTime
()
{
return
$this
->
requestStack
->
getCurrentRequest
()
->
server
->
get
(
'REQUEST_TIME_FLOAT'
);
}
/**
*
@
{inheritdoc}
* {
@
inheritdoc}
*/
public
function
getCurrentTime
()
{
return
time
();
}
/**
*
@
{inheritdoc}
* {
@
inheritdoc}
*/
public
function
getCurrentMicroTime
()
{
return
microtime
(
TRUE
);
...
...
core/modules/system/src/Tests/Installer/InstallerConfigDirectorySetNoDirectoryErrorTest.php
View file @
47fcaa09
...
...
@@ -44,7 +44,7 @@ protected function setUpSettings() {
}
/**
*
@
{inheritdoc}
* {
@
inheritdoc}
*/
protected
function
setUpSite
()
{
// This step should not appear as we had a failure prior to the settings
...
...
core/modules/system/src/Tests/Installer/InstallerDatabaseErrorMessagesTest.php
View file @
47fcaa09
...
...
@@ -13,7 +13,7 @@
class
InstallerDatabaseErrorMessagesTest
extends
InstallerTestBase
{
/**
*
@
{inheritdoc}
* {
@
inheritdoc}
*/
protected
function
setUpSettings
()
{
// We are creating a table here to force an error in the installer because
...
...
@@ -25,7 +25,7 @@ protected function setUpSettings() {
}
/**
*
@
{inheritdoc}
* {
@
inheritdoc}
*/
protected
function
setUpSite
()
{
// This step should not appear as we had a failure on the settings screen.
...
...
core/modules/system/src/Tests/Installer/InstallerTranslationTest.php
View file @
47fcaa09
...
...
@@ -42,7 +42,7 @@ protected function setUpLanguage() {
}
/**
*
@
{inheritdoc}
* {
@
inheritdoc}
*/
protected
function
setUpSettings
()
{
// We are creating a table here to force an error in the installer because
...
...
core/modules/system/tests/modules/entity_test/src/Entity/EntityTestNoLabel.php
View file @
47fcaa09
...
...
@@ -19,7 +19,7 @@
class
EntityTestNoLabel
extends
EntityTest
{
/**
*
@
{inheritdoc}
* {
@
inheritdoc}
*/
public
function
label
()
{
return
$this
->
getName
();
...
...
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