Skip to content

Commit

Permalink
Merge pull request #369 from nextcloud/composer/upgrade
Browse files Browse the repository at this point in the history
[stable29] upgrade packages
  • Loading branch information
ArtificialOwl committed May 14, 2024
2 parents 548342f + 18b3da3 commit b934e8b
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 19 deletions.
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ appstore: clean composer
--exclude=/issue_template.md \
--exclude=/README.md \
--exclude=/composer.json \
--exclude=/vendor \
--exclude=/vendor-bin \
--exclude=/lib-vendor-organizer.php \
--exclude=/scoper.inc.php \
Expand Down
24 changes: 12 additions & 12 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions lib/Vendor/Psr/Http/Message/UploadedFileFactoryInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ interface UploadedFileFactoryInterface
*
* @param StreamInterface $stream Underlying stream representing the
* uploaded file content.
* @param int $size in bytes
* @param int|null $size in bytes
* @param int $error PHP file upload error
* @param string $clientFilename Filename as provided by the client, if any.
* @param string $clientMediaType Media type as provided by the client, if any.
* @param string|null $clientFilename Filename as provided by the client, if any.
* @param string|null $clientMediaType Media type as provided by the client, if any.
*
* @return UploadedFileInterface
*
* @throws \InvalidArgumentException If the file resource is not readable.
*/
public function createUploadedFile(StreamInterface $stream, int $size = null, int $error = \UPLOAD_ERR_OK, string $clientFilename = null, string $clientMediaType = null) : UploadedFileInterface;
public function createUploadedFile(StreamInterface $stream, ?int $size = null, int $error = \UPLOAD_ERR_OK, ?string $clientFilename = null, ?string $clientMediaType = null) : UploadedFileInterface;
}
4 changes: 2 additions & 2 deletions vendor-bin/php-scoper/vendor/composer/installed.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
'type' => 'library',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
'reference' => '2cc1891d51acbffc59367d8d35db5e7ed7125167',
'reference' => '548342ff025b2910152ae9b6eaa03fae1741d8ea',
'name' => '__root__',
'dev' => true,
),
Expand All @@ -16,7 +16,7 @@
'type' => 'library',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
'reference' => '2cc1891d51acbffc59367d8d35db5e7ed7125167',
'reference' => '548342ff025b2910152ae9b6eaa03fae1741d8ea',
'dev_requirement' => false,
),
'composer/package-versions-deprecated' => array(
Expand Down

0 comments on commit b934e8b

Please sign in to comment.