Submit
Path:
~
/
/
opt
/
psa
/
admin
/
plib
/
modules
/
grafana
/
vendor
/
nikic
/
php-parser
/
lib
/
PhpParser
/
Internal
/
File Content:
DiffElem.php
<?php declare (strict_types=1); namespace PleskGrafana\PhpParser\Internal; /** * @internal */ class DiffElem { public const TYPE_KEEP = 0; public const TYPE_REMOVE = 1; public const TYPE_ADD = 2; public const TYPE_REPLACE = 3; /** @var int One of the TYPE_* constants */ public int $type; /** @var mixed Is null for add operations */ public $old; /** @var mixed Is null for remove operations */ public $new; /** * @param int $type One of the TYPE_* constants * @param mixed $old Is null for add operations * @param mixed $new Is null for remove operations */ public function __construct(int $type, $old, $new) { $this->type = $type; $this->old = $old; $this->new = $new; } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
INFO
Name
Size
Permission
Action
DiffElem.php
779 bytes
0644
Differ.php
5070 bytes
0644
PrintableNewAnonClassNode.php
2668 bytes
0644
TokenPolyfill.php
9413 bytes
0644
TokenStream.php
9254 bytes
0644
N4ST4R_ID | Naxtarrr