update patch 1
This commit is contained in:
+6
-8
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user