From 64ce48de3274ad854aa5b58e2b91e248bb2e940e Mon Sep 17 00:00:00 2001 From: Yurii Date: Wed, 3 Dec 2025 14:26:38 +0200 Subject: [PATCH] cs fix --- application/Espo/Core/ORM/Type/FieldType.php | 72 ++++++++++---------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/application/Espo/Core/ORM/Type/FieldType.php b/application/Espo/Core/ORM/Type/FieldType.php index 92bb241252..7cc60a5226 100644 --- a/application/Espo/Core/ORM/Type/FieldType.php +++ b/application/Espo/Core/ORM/Type/FieldType.php @@ -31,52 +31,52 @@ namespace Espo\Core\ORM\Type; class FieldType { - public const VARCHAR = 'varchar'; - public const BOOL = 'bool'; - public const TEXT = 'text'; - public const INT = 'int'; - public const FLOAT = 'float'; - public const DATE = 'date'; - public const DATETIME = 'datetime'; - public const DATETIME_OPTIONAL = 'datetimeOptional'; - public const ENUM = 'enum'; - public const MULTI_ENUM = 'multiEnum'; - public const ARRAY = 'array'; - public const CHECKLIST = 'checklist'; - public const CURRENCY = 'currency'; - public const CURRENCY_CONVERTED = 'currencyConverted'; - public const PERSON_NAME = 'personName'; - public const ADDRESS = 'address'; - public const EMAIL = 'email'; - public const PHONE = 'phone'; - public const AUTOINCREMENT = 'autoincrement'; - public const URL = 'url'; - public const NUMBER = 'number'; - public const LINK = 'link'; - public const LINK_ONE = 'linkOne'; - public const LINK_PARENT = 'linkParent'; - public const FILE = 'file'; - public const IMAGE = 'image'; - public const LINK_MULTIPLE = 'linkMultiple'; - public const ATTACHMENT_MULTIPLE = 'attachmentMultiple'; - public const FOREIGN = 'foreign'; - public const WYSIWYG = 'wysiwyg'; - public const JSON_ARRAY = 'jsonArray'; - public const JSON_OBJECT = 'jsonObject'; - public const PASSWORD = 'password'; + public const string VARCHAR = 'varchar'; + public const string BOOL = 'bool'; + public const string TEXT = 'text'; + public const string INT = 'int'; + public const string FLOAT = 'float'; + public const string DATE = 'date'; + public const string DATETIME = 'datetime'; + public const string DATETIME_OPTIONAL = 'datetimeOptional'; + public const string ENUM = 'enum'; + public const string MULTI_ENUM = 'multiEnum'; + public const string ARRAY = 'array'; + public const string CHECKLIST = 'checklist'; + public const string CURRENCY = 'currency'; + public const string CURRENCY_CONVERTED = 'currencyConverted'; + public const string PERSON_NAME = 'personName'; + public const string ADDRESS = 'address'; + public const string EMAIL = 'email'; + public const string PHONE = 'phone'; + public const string AUTOINCREMENT = 'autoincrement'; + public const string URL = 'url'; + public const string NUMBER = 'number'; + public const string LINK = 'link'; + public const string LINK_ONE = 'linkOne'; + public const string LINK_PARENT = 'linkParent'; + public const string FILE = 'file'; + public const string IMAGE = 'image'; + public const string LINK_MULTIPLE = 'linkMultiple'; + public const string ATTACHMENT_MULTIPLE = 'attachmentMultiple'; + public const string FOREIGN = 'foreign'; + public const string WYSIWYG = 'wysiwyg'; + public const string JSON_ARRAY = 'jsonArray'; + public const string JSON_OBJECT = 'jsonObject'; + public const string PASSWORD = 'password'; /** * @since 9.3.0 */ - public const DECIMAL = 'decimal'; + public const string DECIMAL = 'decimal'; /** * @since 9.3.0 */ - public const URL_MULTIPLE = 'urlMultiple'; + public const string URL_MULTIPLE = 'urlMultiple'; /** * @since 9.3.0 */ - public const BARCODE = 'barcode'; + public const string BARCODE = 'barcode'; }