phpstan, phpcs, phpunit fixes

This commit is contained in:
Dennis Eichhorn 2023-01-27 22:12:09 +01:00
parent 3f10213b90
commit 1f9bdeb09e
3 changed files with 4 additions and 4 deletions

View File

@ -75,7 +75,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

@ -45,7 +45,7 @@ final class WorkflowInstanceAbstractMapper 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

@ -48,7 +48,7 @@ final class WorkflowTemplateMapper extends DataMapperFactory
/** /**
* Has one relation. * Has one relation.
* *
* @var array<string, array{mapper:string, external:string, by?:string, column?:string, conditional?:bool}> * @var array<string, array{mapper:class-string, external:string, by?:string, column?:string, conditional?:bool}>
* @since 1.0.0 * @since 1.0.0
*/ */
public const OWNS_ONE = [ public const OWNS_ONE = [
@ -61,7 +61,7 @@ final class WorkflowTemplateMapper 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 = [