Skip to content

Commit 05ac6f4

Browse files
committed
Update packages
- phpstan/phpstan-nette updated from 2.0.1 to 2.0.2 patch See changes: phpstan/phpstan-nette@2.0.1...2.0.2 Release notes: https://github.com/phpstan/phpstan-nette/releases/tag/2.0.2 - roave/security-advisories updated from dev-latest@a717959 to dev-latest@e7a38fc See changes: Roave/SecurityAdvisories@a717959...e7a38fc
1 parent 41b377e commit 05ac6f4

File tree

5 files changed

+72
-35
lines changed

5 files changed

+72
-35
lines changed

app/composer.lock

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

app/vendor/composer/installed.json

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

app/vendor/composer/installed.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
'name' => 'spaze/michalspacek.cz',
44
'pretty_version' => 'dev-main',
55
'version' => 'dev-main',
6-
'reference' => '507634a28b2ae2dbe3035b63408159d9d07360c7',
6+
'reference' => '41b377e0f5a84b490a6a58bbbcfafe32cbb2df99',
77
'type' => 'project',
88
'install_path' => __DIR__ . '/../../',
99
'aliases' => array(),
@@ -344,9 +344,9 @@
344344
'dev_requirement' => true,
345345
),
346346
'phpstan/phpstan-nette' => array(
347-
'pretty_version' => '2.0.1',
348-
'version' => '2.0.1.0',
349-
'reference' => '200d1926c57f6feda0d0f3056985fceccd8003c0',
347+
'pretty_version' => '2.0.2',
348+
'version' => '2.0.2.0',
349+
'reference' => '7ff60d93371de7855216bb3b2d9f47f984322ede',
350350
'type' => 'phpstan-extension',
351351
'install_path' => __DIR__ . '/../phpstan/phpstan-nette',
352352
'aliases' => array(),
@@ -403,7 +403,7 @@
403403
'roave/security-advisories' => array(
404404
'pretty_version' => 'dev-latest',
405405
'version' => 'dev-latest',
406-
'reference' => 'a717959d5f0bf7c9a881efdbb7ec0da4454a14ac',
406+
'reference' => 'e7a38fcc13e4ddfe9a28d5c7bf50aa9a9da758ec',
407407
'type' => 'metapackage',
408408
'install_path' => null,
409409
'aliases' => array(
@@ -468,7 +468,7 @@
468468
'spaze/michalspacek.cz' => array(
469469
'pretty_version' => 'dev-main',
470470
'version' => 'dev-main',
471-
'reference' => '507634a28b2ae2dbe3035b63408159d9d07360c7',
471+
'reference' => '41b377e0f5a84b490a6a58bbbcfafe32cbb2df99',
472472
'type' => 'project',
473473
'install_path' => __DIR__ . '/../../',
474474
'aliases' => array(),

app/vendor/phpstan/phpstan-nette/extension.neon

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ parameters:
2121
- stubs/Forms/Form.stub
2222
- stubs/Forms/Rules.stub
2323
- stubs/Http/SessionSection.stub
24+
- stubs/Http/FileUpload.stub
2425
- stubs/Routing/Router.stub
2526
- stubs/Utils/ArrayHash.stub
2627
- stubs/Utils/Arrays.stub
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php
2+
3+
namespace Nette\Http;
4+
5+
class FileUpload
6+
{
7+
8+
/**
9+
* @return array{0:positive-int, 1:positive-int}|null
10+
*/
11+
public function getImageSize(): ?array
12+
{
13+
// nothing
14+
}
15+
16+
}

0 commit comments

Comments
 (0)