Skip to content
This repository was archived by the owner on May 1, 2019. It is now read-only.

Commit daf648d

Browse files
author
Marco Rieger
committed
added correct inheritdoc with brackets
1 parent 203098f commit daf648d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

module/Application/src/Application/Exception/ViewableUserException.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class ViewableUserException extends \Exception implements ViewableUserExceptionI
88
private $publicMessage;
99

1010
/**
11-
* @inheritdoc
11+
* {@inheritdoc}
1212
*/
1313
public function __construct($message = '', $publicMessage = '', $code = 0, \Exception $previous = null)
1414
{
@@ -17,7 +17,7 @@ public function __construct($message = '', $publicMessage = '', $code = 0, \Exce
1717
}
1818

1919
/**
20-
* @inheritdoc
20+
* {@inheritdoc}
2121
*/
2222
public function getPublicMessage()
2323
{

module/Application/src/Application/View/Helper/FlashMessenger.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ private function doRender($renderer, $namespace, array $classes = [])
6767
}
6868

6969
/**
70-
* @inheritdoc
70+
* {@inheritdoc}
7171
*/
7272
public function render($namespace = PluginFlashMessenger::NAMESPACE_DEFAULT, array $classes = [])
7373
{
@@ -79,7 +79,7 @@ public function render($namespace = PluginFlashMessenger::NAMESPACE_DEFAULT, arr
7979
}
8080

8181
/**
82-
* @inheritdoc
82+
* {@inheritdoc}
8383
*/
8484
public function renderCurrent($namespace = PluginFlashMessenger::NAMESPACE_DEFAULT, array $classes = [])
8585
{

module/User/src/User/GitHub/LoginListener.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ final class LoginListener implements SharedListenerAggregateInterface
1616
protected $listeners = [];
1717

1818
/**
19-
* @inheritdoc
19+
* {@inheritdoc}
2020
*/
2121
public function attachShared(SharedEventManagerInterface $events)
2222
{
@@ -28,7 +28,7 @@ public function attachShared(SharedEventManagerInterface $events)
2828
}
2929

3030
/**
31-
* @inheritdoc
31+
* {@inheritdoc}
3232
*/
3333
public function detachShared(SharedEventManagerInterface $events)
3434
{

0 commit comments

Comments
 (0)