📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-29 12:23:05
📂
/
/
opt
/
alt
/
tests
/
alt-php81-pecl-psr_1.2.0-1.el8
/
tests
✏️
Editing: PsrLinkEvolvableLinkInterface.phpt
--TEST-- Psr\Link\EvolvableLinkInterface --SKIPIF-- <?php include('skip.inc'); ?> --FILE-- <?php use Psr\Link\LinkInterface; use Psr\Link\EvolvableLinkInterface; class MyImpl implements EvolvableLinkInterface { public function getHref() {} public function isTemplated() {} public function getRels() {} public function getAttributes() {} public function withHref($href) {} public function withRel($rel) {} public function withoutRel($rel) {} public function withAttribute($attribute, $value) {} public function withoutAttribute($attribute) {} } $ex = new MyImpl(); var_dump($ex instanceof LinkInterface); var_dump($ex instanceof EvolvableLinkInterface); --EXPECT-- bool(true) bool(true)
💾 Save Changes
❌ Cancel