File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed
lib/public/WorkflowEngine Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 2424
2525namespace OCP \WorkflowEngine ;
2626
27+ /**
28+ * Class GenericEntityEvent
29+ *
30+ * @package OCP\WorkflowEngine
31+ *
32+ * @since 18.0.0
33+ */
2734class 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 ' );
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments