Skip to content

Commit 426e727

Browse files
Cleanup fix cs and qs
1 parent df2ff07 commit 426e727

File tree

111 files changed

+125
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+125
-1
lines changed

.github/workflows/phpci.yml

+10
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
- "8.0"
2424
- "8.1"
2525
- "8.2"
26+
- "8.3"
2627

2728
steps:
2829
-
@@ -73,6 +74,7 @@ jobs:
7374
- "8.0"
7475
- "8.1"
7576
- "8.2"
77+
- "8.3"
7678

7779
steps:
7880
-
@@ -121,10 +123,18 @@ jobs:
121123
php-version: "7.4"
122124
- typo3-version: "^11.5"
123125
php-version: "8.0"
126+
- typo3-version: "^11.5"
127+
php-version: "8.1"
128+
- typo3-version: "^11.5"
129+
php-version: "8.2"
130+
- typo3-version: "^11.5"
131+
php-version: "8.3"
124132
- typo3-version: "^12.4"
125133
php-version: "8.1"
126134
- typo3-version: "^12.4"
127135
php-version: "8.2"
136+
- typo3-version: "^12.4"
137+
php-version: "8.3"
128138

129139
steps:
130140
-

Classes/Database/Connection.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* @author Michael Wagner
45
*

Classes/Domain/Model/Iso/Base.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/***************************************************************
34
* Copyright notice
45
*

Classes/Domain/Model/Iso/Iban.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/***************************************************************
34
* Copyright notice
45
*

Classes/Domain/Model/Iso/SwiftBic.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/***************************************************************
34
* Copyright notice
45
*

action/class.tx_mklib_action_ListPages.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/***************************************************************
34
* Copyright notice
45
*

action/class.tx_mklib_action_ShowSingeItem.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Copyright notice.
45
*

composer.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,8 @@
103103
"@test:phpcompatibility:7.4",
104104
"@test:phpcompatibility:8.0",
105105
"@test:phpcompatibility:8.1",
106-
"@test:phpcompatibility:8.2"
106+
"@test:phpcompatibility:8.2",
107+
"@test:phpcompatibility:8.3"
107108
],
108109
"test:phpcompatibility:7.4": [
109110
"[ -e .Build/bin/phpcs ] || composer update",
@@ -121,6 +122,10 @@
121122
"[ -e .Build/bin/phpcs ] || composer update",
122123
".Build/bin/phpcs --ignore=.Build/* -p . --standard=.Build/vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.2"
123124
],
125+
"test:phpcompatibility:8.3": [
126+
"[ -e .Build/bin/phpcs ] || composer update",
127+
".Build/bin/phpcs --ignore=.Build/* -p . --standard=.Build/vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.3"
128+
],
124129
"test:phpstan": [
125130
"[ -e .Build/bin/phpstan ] || composer update --ansi",
126131
".Build/bin/phpstan analyse -c phpstan.neon --memory-limit=512M --ansi"

exception/class.tx_mklib_exception_InvalidConfiguration.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* @author Hannes Bochmann
45
*

exception/class.tx_mklib_exception_NoBeUser.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* @author Hannes Bochmann
45
*

exception/class.tx_mklib_exception_NoFeUser.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* @author Hannes Bochmann
45
*

ext_localconf.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* lokale Config laden.
45
*/

filter/class.tx_mklib_filter_SingleItem.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* @author Hannes Bochmann <[email protected]>
45
*

filter/class.tx_mklib_filter_Sorter.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* @author Hannes Bochmann <[email protected]>
45
*

interface/class.tx_mklib_interface_IZipCountry.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/*
34
*
45
* Copyright notice

mod1/decorator/class.tx_mklib_mod1_decorator_Base.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Copyright notice.
45
*

mod1/export/class.tx_mklib_mod1_export_Handler.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/***************************************************************
34
* Copyright notice
45
*

mod1/export/class.tx_mklib_mod1_export_ListBuilder.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/***************************************************************
34
* Copyright notice
45
*

mod1/linker/class.tx_mklib_mod1_linker_Base.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* @author Hannes Bochmann
45
*

mod1/linker/class.tx_mklib_mod1_linker_ShowDetails.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/***************************************************************
34
* Copyright notice
45
*

mod1/searcher/class.tx_mklib_mod1_searcher_Base.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* @author Hannes Bochmann
45
*

mod1/searcher/class.tx_mklib_mod1_searcher_abstractBase.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Copyright notice.
45
*

mod1/util/class.tx_mklib_mod1_util_Language.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Copyright notice.
45
*

mod1/util/class.tx_mklib_mod1_util_SearchBuilder.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* @author Hannes Bochmann
45
*

mod1/util/class.tx_mklib_mod1_util_Selector.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Copyright notice.
45
*

model/class.tx_mklib_model_Constant.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* @author Hannes Bochmann
45
*

model/class.tx_mklib_model_Currency.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* @author mwagner
45
*

model/class.tx_mklib_model_Page.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/***************************************************************
34
* Copyright notice
45
*

model/class.tx_mklib_model_TtAddress.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* @author Hannes Bochmann
45
*

repository/class.tx_mklib_repository_Abstract.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/***************************************************************
34
* Copyright notice
45
*

repository/class.tx_mklib_repository_Pages.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/***************************************************************
34
* Copyright notice
45
*

scheduler/class.tx_mklib_scheduler_DeleteFromDatabase.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* @author Hannes Bochmann
45
*

scheduler/class.tx_mklib_scheduler_DeleteFromDatabaseFieldProvider.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* @author Hannes Bochmann
45
*

scheduler/class.tx_mklib_scheduler_EmailFieldProvider.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Copyright notice.
45
*

scheduler/class.tx_mklib_scheduler_Generic.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/***************************************************************
34
* Copyright notice
45
*

scheduler/class.tx_mklib_scheduler_GenericFieldProvider.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Copyright notice.
45
*

scheduler/class.tx_mklib_scheduler_SchedulerTaskFailDetection.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/***************************************************************
34
* Copyright notice
45
*

scheduler/class.tx_mklib_scheduler_SchedulerTaskFailDetectionFieldProvider.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Copyright notice.
45
*

scheduler/class.tx_mklib_scheduler_SchedulerTaskFreezeDetection.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/***************************************************************
34
* Copyright notice
45
*

scheduler/class.tx_mklib_scheduler_SchedulerTaskFreezeDetectionFieldProvider.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Copyright notice.
45
*

scheduler/class.tx_mklib_scheduler_cleanupTempFiles.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/***************************************************************
34
* Copyright notice
45
*

scheduler/class.tx_mklib_scheduler_cleanupTempFilesFieldProvider.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Copyright notice.
45
*

search/class.tx_mklib_search_Constant.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* @author Hannes Bochmann
45
*

search/class.tx_mklib_search_StaticCountries.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* @author Hannes Bochmann
45
*

search/class.tx_mklib_search_StaticCountryZones.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* @author Hannes Bochmann
45
*

soap/class.tx_mklib_soap_ClientWrapper.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/***************************************************************
34
* Copyright notice
45
*

srv/class.tx_mklib_srv_Constant.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/***************************************************************
34
* Copyright notice
45
*

srv/class.tx_mklib_srv_Finance.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* @author Michael Wagner
45
*

srv/class.tx_mklib_srv_StaticCountries.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/***************************************************************
34
* Copyright notice
45
*

srv/class.tx_mklib_srv_StaticCountryZones.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/***************************************************************
34
* Copyright notice
45
*

tca/eval/class.tx_mklib_tca_eval_isoDate.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Copyright notice.
45
*

tca/eval/class.tx_mklib_tca_eval_priceDecimalSeperator.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/***************************************************************
34
* Copyright notice
45
*

tests/Classes/Database/ConnectionTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* @author Michael Wagner
45
*

tests/Classes/Domain/Model/Iso/IbanTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/***************************************************************
34
* Copyright notice
45
*

tests/Classes/Domain/Model/Iso/SwiftBicTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/***************************************************************
34
* Copyright notice
45
*

tests/action/class.tx_mklib_tests_action_ShowSingeItemTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Copyright notice.
45
*

tests/class.tx_mklib_tests_DBTestCaseSkeleton.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* @author Hannes Bochmann
45
*

tests/class.tx_mklib_tests_MarkerTestcase.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* @author Michael Wagner
45
*

tests/filter/class.tx_mklib_tests_filter_SingleItemTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/*
34
*
45
* Copyright notice

0 commit comments

Comments
 (0)