keskinbu/php-github-api

View on GitHub
src/Github/Api/Base/User.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Github\Api\Base;

class User extends AbstractMethods
{
    public function events(string $username)
    {
        return $this->getClient()->makeRequest('users/' . $username . '/events')->getBody()->getContents();
    }
}