update patch 1

This commit is contained in:
fiqhpratama
2024-12-02 01:18:34 +07:00
parent 453d9bb470
commit 25026b0a85
3380 changed files with 103529 additions and 363623 deletions
+6 -8
View File
@@ -18,13 +18,11 @@ namespace Symfony\Component\VarDumper\Caster;
*/
class FrameStub extends EnumStub
{
public bool $keepArgs;
public bool $inTraceStub;
public function __construct(array $frame, bool $keepArgs = true, bool $inTraceStub = false)
{
$this->value = $frame;
$this->keepArgs = $keepArgs;
$this->inTraceStub = $inTraceStub;
public function __construct(
array $frame,
public bool $keepArgs = true,
public bool $inTraceStub = false,
) {
parent::__construct($frame);
}
}