1
0
mirror of https://github.com/flarum/core.git synced 2025-08-07 08:56:38 +02:00

Merge pull request #1743 from flarum/fl/test-structure

Improve test suite structure
This commit is contained in:
Franz Liedke
2019-03-03 20:17:35 +01:00
committed by GitHub
50 changed files with 744 additions and 670 deletions

View File

@@ -42,6 +42,11 @@ class InstalledApp implements AppInterface
$this->config = $config;
}
public function getContainer()
{
return $this->container;
}
/**
* @return \Psr\Http\Server\RequestHandlerInterface
*/

View File

@@ -72,7 +72,7 @@ class InstalledSite implements SiteInterface
/**
* Create and boot a Flarum application instance.
*
* @return AppInterface
* @return InstalledApp
*/
public function bootApp(): AppInterface
{