Issue #2824727 by martin107: Malformed inheritdoc prevents Pharborist scripts from working

8.3.x
Alex Pott 2016-11-04 06:57:30 +00:00
parent a61efd82db
commit 47fcaa0974
5 changed files with 9 additions and 9 deletions

View File

@ -27,28 +27,28 @@ class Time implements TimeInterface {
}
/**
* @{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);

View File

@ -44,7 +44,7 @@ class InstallerConfigDirectorySetNoDirectoryErrorTest extends InstallerTestBase
}
/**
* @{inheritdoc}
* {@inheritdoc}
*/
protected function setUpSite() {
// This step should not appear as we had a failure prior to the settings

View File

@ -13,7 +13,7 @@ use Drupal\simpletest\InstallerTestBase;
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 @@ class InstallerDatabaseErrorMessagesTest extends InstallerTestBase {
}
/**
* @{inheritdoc}
* {@inheritdoc}
*/
protected function setUpSite() {
// This step should not appear as we had a failure on the settings screen.

View File

@ -42,7 +42,7 @@ class InstallerTranslationTest extends InstallerTestBase {
}
/**
* @{inheritdoc}
* {@inheritdoc}
*/
protected function setUpSettings() {
// We are creating a table here to force an error in the installer because

View File

@ -19,7 +19,7 @@ namespace Drupal\entity_test\Entity;
class EntityTestNoLabel extends EntityTest {
/**
* @{inheritdoc}
* {@inheritdoc}
*/
public function label() {
return $this->getName();