Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit55e683f

Browse files
committed
[VarDumper] Add support for Fiber
1 parentff70bd1 commit55e683f

File tree

3 files changed

+46
-0
lines changed

3 files changed

+46
-0
lines changed

‎src/Symfony/Component/VarDumper/CHANGELOG.md‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ CHANGELOG
66

77
* Add ability to style integer and double values independently
88
* Add casters for Symfony's UUIDs and ULIDs
9+
* Add support for`Fiber`
910

1011
5.2.0
1112
-----
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <fabien@symfony.com>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
namespaceSymfony\Component\VarDumper\Caster;
13+
14+
useSymfony\Component\VarDumper\Cloner\Stub;
15+
16+
/**
17+
* Casts Fiber related classes to array representation.
18+
*
19+
* @author Grégoire Pineau <lyrixx@lyrixx.info>
20+
*/
21+
finalclass FiberCaster
22+
{
23+
publicstaticfunctioncastFiber(\Fiber$fiber,array$a,Stub$stub,bool$isNested,int$filter =0)
24+
{
25+
$prefix = Caster::PREFIX_VIRTUAL;
26+
27+
if ($fiber->isTerminated()) {
28+
$status ='terminated';
29+
}elseif ($fiber->isRunning()) {
30+
$status ='running';
31+
}elseif ($fiber->isSuspended()) {
32+
$status ='suspended';
33+
}elseif ($fiber->isStarted()) {
34+
$status ='started';
35+
}else {
36+
$status ='not started';
37+
}
38+
39+
$a[$prefix.'status'] =$status;
40+
41+
return$a;
42+
}
43+
}

‎src/Symfony/Component/VarDumper/Cloner/AbstractCloner.php‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ abstract class AbstractCloner implements ClonerInterface
2929
'Symfony\Component\VarDumper\Caster\ConstStub' => ['Symfony\Component\VarDumper\Caster\StubCaster','castStub'],
3030
'Symfony\Component\VarDumper\Caster\EnumStub' => ['Symfony\Component\VarDumper\Caster\StubCaster','castEnum'],
3131

32+
'Fiber' => ['Symfony\Component\VarDumper\Caster\FiberCaster','castFiber'],
33+
3234
'Closure' => ['Symfony\Component\VarDumper\Caster\ReflectionCaster','castClosure'],
3335
'Generator' => ['Symfony\Component\VarDumper\Caster\ReflectionCaster','castGenerator'],
3436
'ReflectionType' => ['Symfony\Component\VarDumper\Caster\ReflectionCaster','castType'],

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp