fix static analysis

This commit is contained in:
Dennis Eichhorn 2023-04-11 00:20:13 +02:00
parent 28862b9464
commit d3c32ab7d2
8 changed files with 26 additions and 2 deletions

View File

@ -23,6 +23,9 @@ use phpOMS\DataStorage\Database\Mapper\DataMapperFactory;
* @license OMS License 2.0 * @license OMS License 2.0
* @link https://jingga.app * @link https://jingga.app
* @since 1.0.0 * @since 1.0.0
*
* @template T of SupportApp
* @extends DataMapperFactory<T>
*/ */
final class SupportAppMapper extends DataMapperFactory final class SupportAppMapper extends DataMapperFactory
{ {

View File

@ -23,6 +23,9 @@ use phpOMS\DataStorage\Database\Mapper\DataMapperFactory;
* @license OMS License 2.0 * @license OMS License 2.0
* @link https://jingga.app * @link https://jingga.app
* @since 1.0.0 * @since 1.0.0
*
* @template T of TicketAttribute
* @extends DataMapperFactory<T>
*/ */
final class TicketAttributeMapper extends DataMapperFactory final class TicketAttributeMapper extends DataMapperFactory
{ {

View File

@ -24,6 +24,9 @@ use phpOMS\Localization\BaseStringL11n;
* @license OMS License 2.0 * @license OMS License 2.0
* @link https://jingga.app * @link https://jingga.app
* @since 1.0.0 * @since 1.0.0
*
* @template T of BaseStringL11n
* @extends DataMapperFactory<T>
*/ */
final class TicketAttributeTypeL11nMapper extends DataMapperFactory final class TicketAttributeTypeL11nMapper extends DataMapperFactory
{ {
@ -59,7 +62,7 @@ final class TicketAttributeTypeL11nMapper extends DataMapperFactory
/** /**
* Model to use by the mapper. * Model to use by the mapper.
* *
* @var class-string * @var class-string<T>
* @since 1.0.0 * @since 1.0.0
*/ */
public const MODEL = BaseStringL11n::class; public const MODEL = BaseStringL11n::class;

View File

@ -23,6 +23,9 @@ use phpOMS\DataStorage\Database\Mapper\DataMapperFactory;
* @license OMS License 2.0 * @license OMS License 2.0
* @link https://jingga.app * @link https://jingga.app
* @since 1.0.0 * @since 1.0.0
*
* @template T of TicketAttributeType
* @extends DataMapperFactory<T>
*/ */
final class TicketAttributeTypeMapper extends DataMapperFactory final class TicketAttributeTypeMapper extends DataMapperFactory
{ {

View File

@ -24,6 +24,9 @@ use phpOMS\Localization\BaseStringL11n;
* @license OMS License 2.0 * @license OMS License 2.0
* @link https://jingga.app * @link https://jingga.app
* @since 1.0.0 * @since 1.0.0
*
* @template T of BaseStringL11n
* @extends DataMapperFactory<T>
*/ */
final class TicketAttributeValueL11nMapper extends DataMapperFactory final class TicketAttributeValueL11nMapper extends DataMapperFactory
{ {
@ -59,7 +62,7 @@ final class TicketAttributeValueL11nMapper extends DataMapperFactory
/** /**
* Model to use by the mapper. * Model to use by the mapper.
* *
* @var class-string * @var class-string<T>
* @since 1.0.0 * @since 1.0.0
*/ */
public const MODEL = BaseStringL11n::class; public const MODEL = BaseStringL11n::class;

View File

@ -23,6 +23,9 @@ use phpOMS\DataStorage\Database\Mapper\DataMapperFactory;
* @license OMS License 2.0 * @license OMS License 2.0
* @link https://jingga.app * @link https://jingga.app
* @since 1.0.0 * @since 1.0.0
*
* @template T of TicketAttributeValue
* @extends DataMapperFactory<T>
*/ */
final class TicketAttributeValueMapper extends DataMapperFactory final class TicketAttributeValueMapper extends DataMapperFactory
{ {

View File

@ -24,6 +24,9 @@ use phpOMS\DataStorage\Database\Mapper\DataMapperFactory;
* @license OMS License 2.0 * @license OMS License 2.0
* @link https://jingga.app * @link https://jingga.app
* @since 1.0.0 * @since 1.0.0
*
* @template T of TicketElement
* @extends DataMapperFactory<T>
*/ */
final class TicketElementMapper extends DataMapperFactory final class TicketElementMapper extends DataMapperFactory
{ {

View File

@ -25,6 +25,9 @@ use phpOMS\DataStorage\Database\Mapper\DataMapperFactory;
* @license OMS License 2.0 * @license OMS License 2.0
* @link https://jingga.app * @link https://jingga.app
* @since 1.0.0 * @since 1.0.0
*
* @template T of Ticket
* @extends DataMapperFactory<T>
*/ */
final class TicketMapper extends DataMapperFactory final class TicketMapper extends DataMapperFactory
{ {