Viewing File: /opt/alt/tests/alt-php83-pecl-psr_1.2.0-1.el8/tests/PsrLinkLinkProviderInterface.phpt

--TEST--
Psr\Link\LinkProviderInterface
--SKIPIF--
<?php include('skip.inc'); ?>
--FILE--
<?php
use Psr\Link\LinkProviderInterface;
class MyImpl implements LinkProviderInterface {
    public function getLinks() {}
    public function getLinksByRel($rel) {}
}
$ex = new MyImpl();
var_dump($ex instanceof LinkProviderInterface);
--EXPECT--
bool(true)
Back to Directory File Manager