Skip to content

Commit

Permalink
Fix version numbers, and add short descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
rjzondervan committed Oct 4, 2024
1 parent d0cd60a commit ded5511
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"title": "CreateCaseNotification",
"$id": "https://commongateway.nl/action/vrijbrp.createCaseNotification.action.json",
"$schema": "https://docs.commongateway.nl/schemas/Action.schema.json",
"version": "0.0.2",
"version": "0.0.1",
"description": "This is an example Action. This action is triggered when commongateway.object.create event is thrown and the data (object) of the event has entity = https://example.com/schema/example.schema.json. In order for this condition to work the ref https://example.com/schema/example.schema.json has to be translated to an id, see installation.json['actions']['fixConfigRef'] for how to do this.",
"listens": [
"commongateway.object.post.create"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"title": "CreateStatusNotification",
"$id": "https://commongateway.nl/action/vrijbrp.createStatusNotification.action.json",
"$schema": "https://docs.commongateway.nl/schemas/Action.schema.json",
"version": "0.0.2",
"version": "0.0.1",
"description": "This is an example Action. This action is triggered when commongateway.object.create event is thrown and the data (object) of the event has entity = https://example.com/schema/example.schema.json. In order for this condition to work the ref https://example.com/schema/example.schema.json has to be translated to an id, see installation.json['actions']['fixConfigRef'] for how to do this.",
"listens": [
"commongateway.object.post.create"
Expand Down
2 changes: 2 additions & 0 deletions src/ActionHandler/NotificationCaseHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ class NotificationCaseHandler implements ActionHandlerInterface


/**
* The constructor.
*
* @param VrijBrpService $vrijBrpService The VrijBRP Service
*/
public function __construct(
Expand Down
2 changes: 2 additions & 0 deletions src/ActionHandler/NotificationUpdateHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ class NotificationUpdateHandler implements ActionHandlerInterface


/**
* The constructor.
*
* @param VrijBrpService $vrijBrpService The VrijBRP Service
*/
public function __construct(
Expand Down
2 changes: 2 additions & 0 deletions src/ActionHandler/SynchronizeCollectionHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ class SynchronizeCollectionHandler implements ActionHandlerInterface


/**
* The constructor.
*
* @param NewSynchronizationService $syncService The synchronization service.
* @param VrijBrpService $vrijBrpService The VrijBRP service.
*/
Expand Down
11 changes: 11 additions & 0 deletions src/Service/NewSynchronizationService.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,17 @@ class NewSynchronizationService
{


/**
* The constructor.
*
* @param GatewayResourceService $resourceService The resourceService
* @param CallService $callService The callService
* @param SynchronizationService $syncService The SynchronizationService
* @param LoggerInterface $synchronizationLogger The Logger
* @param EntityManagerInterface $entityManager The Entity Manager
* @param MappingService $mappingService The mappingService
* @param HydrationService $hydrationService The hydrationService
*/
public function __construct(
private readonly GatewayResourceService $resourceService,
private readonly CallService $callService,
Expand Down

0 comments on commit ded5511

Please sign in to comment.