Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: ConstExprIntegerNode.php
<?php declare(strict_types = 1); namespace PHPStan\PhpDocParser\Ast\ConstExpr; class ConstExprIntegerNode implements ConstExprNode { /** @var string */ public $value; public function __construct(string $value) { $this->value = $value; } public function __toString(): string { return $this->value; } }