friendship ended with social-app. php is my new best friend
1<?php
2/**
3 * Class OAuthOptions
4 *
5 * @created 09.07.2017
6 * @author Smiley <smiley@chillerlan.net>
7 * @copyright 2017 Smiley
8 * @license MIT
9 */
10declare(strict_types=1);
11
12namespace chillerlan\OAuth;
13
14use chillerlan\Settings\SettingsContainerAbstract;
15
16/**
17 * This class holds all settings related to the OAuth provider
18 */
19class OAuthOptions extends SettingsContainerAbstract{
20 use OAuthOptionsTrait;
21}