File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 99namespace 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
1515abstract 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 /**
Original file line number Diff line number Diff line change 1111
1212use Vinlock \StreamAPI \StreamInterface ;
1313
14- class Hitbox extends Stream implements StreamInterface {
14+ class HitboxObject extends Stream implements StreamInterface {
1515
1616 protected $ service = 'hitbox ' ;
1717
Original file line number Diff line number Diff line change 1111
1212use Vinlock \StreamAPI \StreamInterface ;
1313
14- class Twitch extends Stream implements StreamInterface {
14+ class TwitchObject extends Stream implements StreamInterface {
1515
1616 public $ service = 'twitch ' ;
1717
You can’t perform that action at this time.
0 commit comments