phpstan, phpcs, phpunit fixes

This commit is contained in:
Dennis Eichhorn 2023-01-27 22:12:09 +01:00
parent 69d6379265
commit 92c6001e37
3 changed files with 4 additions and 4 deletions

View File

@ -113,7 +113,7 @@ final class Installer extends InstallerAbstract
}; };
$apiApp->dbPool = $app->dbPool; $apiApp->dbPool = $app->dbPool;
$apiApp->unitId = $app->unitId; $apiApp->unitId = $app->unitId;
$apiApp->accountManager = $app->accountManager; $apiApp->accountManager = $app->accountManager;
$apiApp->appSettings = $app->appSettings; $apiApp->appSettings = $app->appSettings;
$apiApp->moduleManager = $app->moduleManager; $apiApp->moduleManager = $app->moduleManager;

View File

@ -43,7 +43,7 @@ final class DashboardBoardMapper extends DataMapperFactory
/** /**
* Has many relation. * Has many relation.
* *
* @var array<string, array{mapper:string, table:string, self?:?string, external?:?string, column?:string}> * @var array<string, array{mapper:class-string, table:string, self?:?string, external?:?string, column?:string}>
* @since 1.0.0 * @since 1.0.0
*/ */
public const HAS_MANY = [ public const HAS_MANY = [
@ -58,7 +58,7 @@ final class DashboardBoardMapper extends DataMapperFactory
/** /**
* Belongs to. * Belongs to.
* *
* @var array<string, array{mapper:string, external:string, column?:string, by?:string}> * @var array<string, array{mapper:class-string, external:string, column?:string, by?:string}>
* @since 1.0.0 * @since 1.0.0
*/ */
public const BELONGS_TO = [ public const BELONGS_TO = [

View File

@ -43,7 +43,7 @@ final class DashboardComponentMapper extends DataMapperFactory
/** /**
* Belongs to. * Belongs to.
* *
* @var array<string, array{mapper:string, external:string, column?:string, by?:string}> * @var array<string, array{mapper:class-string, external:string, column?:string, by?:string}>
* @since 1.0.0 * @since 1.0.0
*/ */
public const BELONGS_TO = [ public const BELONGS_TO = [