diff --git a/Classes/Event/BeforeYoutubeCallEvent.php b/Classes/Event/BeforeYoutubeCallEvent.php index b3aa1d46d2868badb14741fa12f74c699a49a938..1b08eb461e1cb30729decb93f5ce27778d7c331c 100644 --- a/Classes/Event/BeforeYoutubeCallEvent.php +++ b/Classes/Event/BeforeYoutubeCallEvent.php @@ -27,11 +27,13 @@ namespace SGalinski\SgYoutube\Event; +use SGalinski\SgYoutube\Filter\FilterParameterBag; + /** * Called before the call to the YouTube API */ final class BeforeYoutubeCallEvent { - private array $parameters; + private FilterParameterBag $parameters; private int $maxResultsWithFilters; @@ -41,18 +43,18 @@ final class BeforeYoutubeCallEvent { private mixed $id; - public function __construct(array $parameters) { + public function __construct(FilterParameterBag $parameters) { $this->parameters = $parameters; } - public function getParamters(): array { + public function getParamters(): FilterParameterBag { return $this->parameters; } /** * @return mixed */ - public function getId() { + public function getId(): mixed { return $this->id; } diff --git a/Classes/Service/LicenceCheckService.php b/Classes/Service/LicenceCheckService.php index ada807117ba63567f5334d8db37f57a2abb3a8ef..28f2c49dd219ed1675f1e41b66769bb3fa9f0aa0 100644 --- a/Classes/Service/LicenceCheckService.php +++ b/Classes/Service/LicenceCheckService.php @@ -131,13 +131,14 @@ class LicenceCheckService { '8.0.0' => 1729271668, // Tue, 18 Oct 2024 20:57:50 GMT+3 '8.0.1' => 1732058531, // Tue, 19 Nov 2024 23:15:50 GMT+3 '8.1.0' => 1733341275, // Wed, 04 Dez 2024 20:57:50 GMT+3 - '8.1.1' => 1737826502, // 2025-01-25T17:35:02Z + '8.1.1' => 1737826502, // 2025-01-25T17:35:02Z + '8.1.2' => 1737826693, // 2025-01-25T17:38:13Z ]; /** * The current extension version */ - public const CURRENT_VERSION = '8.1.1'; + public const CURRENT_VERSION = '8.1.2'; /** * @param mixed $validUntil A timestamp, which says the lifetime of this key. diff --git a/composer.json b/composer.json index 47d4597b1c3753556f3fa6af16c68c12b9f54319..0263fa8014b10be11e17067cc22292207f8684ce 100644 --- a/composer.json +++ b/composer.json @@ -4,7 +4,7 @@ "description": "A solution for embedding YouTube videos, playlists, or channels easily into TYPO3 pages.", "homepage": "https://www.sgalinski.de", "license": "GPL-2.0-or-later", - "version": "8.1.1", + "version": "8.1.2", "require": { "typo3/cms-core": "^12.4 || ^13.4" }, diff --git a/ext_emconf.php b/ext_emconf.php index cbd3a93dc7b477a47e2f7f08e1f950ce0874dc76..c9fc557e6c6e29e15b2ce72ec3d6158e3868d3c3 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -32,11 +32,11 @@ $EM_CONF['sg_youtube'] = [ 'author_email' => 'stefan@sgalinski.de', 'author_company' => 'sgalinski Internet Services (https://www.sgalinski.de)', 'state' => 'stable', - 'version' => '8.1.1', + 'version' => '8.1.2', 'constraints' => [ 'depends' => [ 'typo3' => '12.4.0-13.4.99', - 'php' => '8.1.1-8.3.99', + 'php' => '8.1.2-8.3.99', ], 'conflicts' => [], 'suggests' => [],