Skip to content

Commit 567575b

Browse files
committed
Updates & Deprecation Fixes
1 parent e8b4b8d commit 567575b

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.phive/phars.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phive xmlns="https://phar.io/phive">
3-
<phar name="phpdocumentor" version="^3.3.1" installed="3.7.1" location="./tools/phpdocumentor" copy="false"/>
3+
<phar name="phpdocumentor" version="^3.3.1" installed="3.8.0" location="./tools/phpdocumentor" copy="false"/>
44
</phive>

.php-cs-fixer.dist.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
'@PER' => true,
2929
'@PER:risky' => true,
3030
'@PHP83Migration' => true,
31-
'@PHP84Migration' => true,
31+
// Enable once PHP 8.4 is the minimum version
32+
// '@PHP84Migration' => true,
3233
'@PHPUnit84Migration:risky' => true,
3334
'array_syntax' => ['syntax' => 'short'],
3435
'class_attributes_separation' => true,

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
php 8.4.5
1+
php 8.4.10

src/Stream/CallbackStreamWrapper.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ final class CallbackStreamWrapper
2020
{
2121
public const PROTOCOL = 'zipcb';
2222

23+
/** @var resource|null */
24+
public $context;
25+
2326
/** @var array<string, callable(string):void> Map of stream IDs to callback functions */
2427
private static array $callbacks = [];
2528

0 commit comments

Comments
 (0)