update patch 1
This commit is contained in:
+7
-11
@@ -20,17 +20,13 @@ use Symfony\Component\VarDumper\Cloner\Stub;
|
||||
*/
|
||||
class TraceStub extends Stub
|
||||
{
|
||||
public bool $keepArgs;
|
||||
public int $sliceOffset;
|
||||
public ?int $sliceLength;
|
||||
public int $numberingOffset;
|
||||
|
||||
public function __construct(array $trace, bool $keepArgs = true, int $sliceOffset = 0, ?int $sliceLength = null, int $numberingOffset = 0)
|
||||
{
|
||||
public function __construct(
|
||||
array $trace,
|
||||
public bool $keepArgs = true,
|
||||
public int $sliceOffset = 0,
|
||||
public ?int $sliceLength = null,
|
||||
public int $numberingOffset = 0,
|
||||
) {
|
||||
$this->value = $trace;
|
||||
$this->keepArgs = $keepArgs;
|
||||
$this->sliceOffset = $sliceOffset;
|
||||
$this->sliceLength = $sliceLength;
|
||||
$this->numberingOffset = $numberingOffset;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user