mirror of
https://github.com/bitinflow/expose.git
synced 2026-03-13 21:45:55 +00:00
28 lines
570 B
PHP
28 lines
570 B
PHP
<?php
|
|
|
|
namespace App\Client\Support;
|
|
|
|
use PhpParser\Node;
|
|
use PhpParser\Node\Scalar\String_;
|
|
use PhpParser\NodeVisitorAbstract;
|
|
|
|
class TokenNodeVisitor extends NodeVisitorAbstract
|
|
{
|
|
/** @var string */
|
|
protected $token;
|
|
|
|
public function __construct(string $token)
|
|
{
|
|
$this->token = $token;
|
|
}
|
|
|
|
public function enterNode(Node $node)
|
|
{
|
|
if ($node instanceof Node\Expr\ArrayItem && $node->key && $node->key->value === 'auth_token') {
|
|
$node->value = new String_($this->token);
|
|
|
|
return $node;
|
|
}
|
|
}
|
|
}
|