mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-08-09 15:47:21 +02:00
* add some basic tests for UrlHelper::rewrite_relative() * fix UrlHelper::rewrite_relative() to work better on non-absolute relative URL paths
10 lines
133 B
PHP
10 lines
133 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PhpParser\Node;
|
|
|
|
use PhpParser\NodeAbstract;
|
|
|
|
abstract class Expr extends NodeAbstract
|
|
{
|
|
}
|