github_cards-8.x-1.x-dev/src/Service/GitHubCardsClientFactory.php
src/Service/GitHubCardsClientFactory.php
<?php
namespace Drupal\github_cards\Service;
use Github\Client;
/**
* Class GitHubCardsClientFactory.
*/
class GitHubCardsClientFactory implements GitHubCardsClientFactoryInterface {
/**
* {@inheritdoc}
*/
public static function createGitHubClient() {
return new Client();
}
}
