GraphAware\Neo4j\OGM\Tests\Integration\UseCase\Github\Model\GithubUser::__construct PHP Method

__construct() public method

public __construct ( $login )
    public function __construct($login)
    {
        $this->login = $login;
        $this->ownedRepositories = new Collection();
        $this->starred = new Collection();
        $this->follows = new Collection();
        $this->followedBy = new Collection();
    }