Skip to content

Commit 209a276

Browse files
committed
fix missing @SInCE's
Signed-off-by: Arthur Schiwon <[email protected]>
1 parent 0ee687b commit 209a276

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

lib/public/WorkflowEngine/GenericEntityEvent.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,25 @@
2424

2525
namespace OCP\WorkflowEngine;
2626

27+
/**
28+
* Class GenericEntityEvent
29+
*
30+
* @package OCP\WorkflowEngine
31+
*
32+
* @since 18.0.0
33+
*/
2734
class GenericEntityEvent implements IEntityEvent {
2835

2936
/** @var string */
3037
private $displayName;
3138
/** @var string */
3239
private $eventName;
3340

41+
/**
42+
* GenericEntityEvent constructor.
43+
*
44+
* @since 18.0.0
45+
*/
3446
public function __construct(string $displayName, string $eventName) {
3547
if(trim($displayName) === '') {
3648
throw new \InvalidArgumentException('DisplayName must not be empty');

lib/public/WorkflowEngine/IEntityCheck.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ interface IEntityCheck {
4747
* @param IEntity $entity
4848
* @param mixed $subject
4949
* @throws \UnexpectedValueException
50+
* @since 18.0.0
5051
*/
5152
public function setEntitySubject(IEntity $entity, $subject): void;
5253

0 commit comments

Comments
 (0)