# user-access-manager/2.3.13/src/UserGroup/AssignmentInformationFactory.php

User Access Manager, version 2.3.13. 18 lines.

- Page: https://pluginprobe.com/plugins/user-access-manager/2.3.13/code/src/UserGroup/AssignmentInformationFactory.php
- Raw: https://pluginprobe.com/plugins/user-access-manager/2.3.13/raw/src/UserGroup/AssignmentInformationFactory.php
- Modified: 2026-07-14T06:51:54+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/user-access-manager/2.3.13/code/src/UserGroup/AssignmentInformationFactory.php#L10-L20`.

```php
<?php

declare(strict_types=1);

namespace UserAccessManager\UserGroup;

class AssignmentInformationFactory
{
    public function createAssignmentInformation(
        ?string $type = null,
        ?string $fromDate = null,
        ?string $toDate = null,
        array $recursiveMembership = []
    ): AssignmentInformation {
        return new AssignmentInformation($type, $fromDate, $toDate, $recursiveMembership);
    }
}

```
