Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
project
drupal
Commits
47fcaa09
Commit
47fcaa09
authored
Nov 04, 2016
by
alexpott
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue
#2824727
by martin107: Malformed inheritdoc prevents Pharborist scripts from working
parent
a61efd82
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
9 deletions
+9
-9
core/lib/Drupal/Component/Datetime/Time.php
core/lib/Drupal/Component/Datetime/Time.php
+4
-4
core/modules/system/src/Tests/Installer/InstallerConfigDirectorySetNoDirectoryErrorTest.php
...aller/InstallerConfigDirectorySetNoDirectoryErrorTest.php
+1
-1
core/modules/system/src/Tests/Installer/InstallerDatabaseErrorMessagesTest.php
...rc/Tests/Installer/InstallerDatabaseErrorMessagesTest.php
+2
-2
core/modules/system/src/Tests/Installer/InstallerTranslationTest.php
...s/system/src/Tests/Installer/InstallerTranslationTest.php
+1
-1
core/modules/system/tests/modules/entity_test/src/Entity/EntityTestNoLabel.php
...ests/modules/entity_test/src/Entity/EntityTestNoLabel.php
+1
-1
No files found.
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