mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-12-11 16:00:59 +01: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
|
|
{
|
|
}
|