1
0
Fork 0
mirror of https://codeberg.org/demostf/api.git synced 2026-06-03 18:04:08 +02:00

extract chat handling

This commit is contained in:
Robin Appelman 2017-03-21 21:24:18 +01:00
commit 9c963fd3af
7 changed files with 149 additions and 29 deletions

View file

@ -0,0 +1,18 @@
<?php namespace Demostf\API\Test\Providers;
use Demostf\API\Providers\InfoProvider;
use Demostf\API\Test\TestCase;
class InfoProviderTest extends TestCase {
/** @var InfoProvider */
private $provider;
public function setUp() {
parent::setUp();
$this->provider = new InfoProvider($this->getDatabaseConnection());
}
public function testGetStats() {
}
}