Skip to content

Commit de0eb4b

Browse files
author
Vinlock
committed
Code Adjustments
1 parent 43aec1f commit de0eb4b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/StreamDriver.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
namespace Vinlock\StreamAPI;
1010

1111

12-
use Vinlock\StreamAPI\StreamObjects\Hitbox;
13-
use Vinlock\StreamAPI\StreamObjects\Twitch;
12+
use Vinlock\StreamAPI\StreamObjects\HitboxObject;
13+
use Vinlock\StreamAPI\StreamObjects\TwitchObject;
1414

1515
abstract class StreamDriver {
1616

@@ -29,8 +29,8 @@ abstract class StreamDriver {
2929
* @var array
3030
*/
3131
public static $providers = [
32-
"twitch" => Twitch::class,
33-
"hitbox" => Hitbox::class
32+
"twitch" => TwitchObject::class,
33+
"hitbox" => HitboxObject::class
3434
];
3535

3636
/**
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
use Vinlock\StreamAPI\StreamInterface;
1313

14-
class Hitbox extends Stream implements StreamInterface {
14+
class HitboxObject extends Stream implements StreamInterface {
1515

1616
protected $service = 'hitbox';
1717

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
use Vinlock\StreamAPI\StreamInterface;
1313

14-
class Twitch extends Stream implements StreamInterface {
14+
class TwitchObject extends Stream implements StreamInterface {
1515

1616
public $service = 'twitch';
1717

0 commit comments

Comments
 (0)