Skip to content

Commit b084ce1

Browse files
Update tools
1 parent 4a9739b commit b084ce1

File tree

8 files changed

+22
-23
lines changed

8 files changed

+22
-23
lines changed

.phive/phars.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phive xmlns="https://phar.io/phive">
3-
<phar name="php-cs-fixer" version="^3.86" installed="3.91.3" location="./tools/php-cs-fixer" copy="true"/>
4-
<phar name="composer" version="^2.8" installed="2.9.2" location="./tools/composer" copy="true"/>
3+
<phar name="php-cs-fixer" version="^3.86" installed="3.92.3" location="./tools/php-cs-fixer" copy="true"/>
4+
<phar name="composer" version="^2.8" installed="2.9.3" location="./tools/composer" copy="true"/>
55
</phive>

tools/.phpstan/composer.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/.phpstan/vendor/composer/installed.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -78,17 +78,17 @@
7878
},
7979
{
8080
"name": "nette/utils",
81-
"version": "v4.1.0",
82-
"version_normalized": "4.1.0.0",
81+
"version": "v4.1.1",
82+
"version_normalized": "4.1.1.0",
8383
"source": {
8484
"type": "git",
8585
"url": "https://github.com/nette/utils.git",
86-
"reference": "fa1f0b8261ed150447979eb22e373b7b7ad5a8e0"
86+
"reference": "c99059c0315591f1a0db7ad6002000288ab8dc72"
8787
},
8888
"dist": {
8989
"type": "zip",
90-
"url": "https://api.github.com/repos/nette/utils/zipball/fa1f0b8261ed150447979eb22e373b7b7ad5a8e0",
91-
"reference": "fa1f0b8261ed150447979eb22e373b7b7ad5a8e0",
90+
"url": "https://api.github.com/repos/nette/utils/zipball/c99059c0315591f1a0db7ad6002000288ab8dc72",
91+
"reference": "c99059c0315591f1a0db7ad6002000288ab8dc72",
9292
"shasum": ""
9393
},
9494
"require": {
@@ -112,7 +112,7 @@
112112
"ext-mbstring": "to use Strings::lower() etc...",
113113
"ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
114114
},
115-
"time": "2025-12-01T17:49:23+00:00",
115+
"time": "2025-12-22T12:14:32+00:00",
116116
"type": "library",
117117
"extra": {
118118
"branch-alias": {
@@ -164,7 +164,7 @@
164164
],
165165
"support": {
166166
"issues": "https://github.com/nette/utils/issues",
167-
"source": "https://github.com/nette/utils/tree/v4.1.0"
167+
"source": "https://github.com/nette/utils/tree/v4.1.1"
168168
},
169169
"install-path": "../nette/utils"
170170
},

tools/.phpstan/vendor/composer/installed.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
'name' => '__root__',
44
'pretty_version' => 'dev-main',
55
'version' => 'dev-main',
6-
'reference' => '5b74f6242eb0baf4414dd15033afd51abc0bb45d',
6+
'reference' => '4a9739b51cbcb355f6e95659612f92e282a7077b',
77
'type' => 'library',
88
'install_path' => __DIR__ . '/../../',
99
'aliases' => array(),
@@ -13,7 +13,7 @@
1313
'__root__' => array(
1414
'pretty_version' => 'dev-main',
1515
'version' => 'dev-main',
16-
'reference' => '5b74f6242eb0baf4414dd15033afd51abc0bb45d',
16+
'reference' => '4a9739b51cbcb355f6e95659612f92e282a7077b',
1717
'type' => 'library',
1818
'install_path' => __DIR__ . '/../../',
1919
'aliases' => array(),
@@ -29,9 +29,9 @@
2929
'dev_requirement' => true,
3030
),
3131
'nette/utils' => array(
32-
'pretty_version' => 'v4.1.0',
33-
'version' => '4.1.0.0',
34-
'reference' => 'fa1f0b8261ed150447979eb22e373b7b7ad5a8e0',
32+
'pretty_version' => 'v4.1.1',
33+
'version' => '4.1.1.0',
34+
'reference' => 'c99059c0315591f1a0db7ad6002000288ab8dc72',
3535
'type' => 'library',
3636
'install_path' => __DIR__ . '/../nette/utils',
3737
'aliases' => array(),

tools/.phpstan/vendor/nette/utils/src/Utils/ArrayHash.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,7 @@ public function offsetSet($key, $value): void
7979
* @param array-key $key
8080
* @return T
8181
*/
82-
#[\ReturnTypeWillChange]
83-
public function offsetGet($key)
82+
public function offsetGet($key): mixed
8483
{
8584
return $this->$key;
8685
}

tools/.phpstan/vendor/nette/utils/src/Utils/Html.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ final public function addHtml(HtmlStringable|string $child): static
582582
/**
583583
* Appends plain-text string to element content.
584584
*/
585-
public function addText(\Stringable|string $text): static
585+
public function addText(\Stringable|string|int|null $text): static
586586
{
587587
if (!$text instanceof HtmlStringable) {
588588
$text = htmlspecialchars((string) $text, ENT_NOQUOTES, 'UTF-8');

tools/composer

2.29 KB
Binary file not shown.

tools/php-cs-fixer

12.6 KB
Binary file not shown.

0 commit comments

Comments
 (0)