[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.133.122.64: ~ $
<?php


namespace Fig\Link;

use Psr\Link\LinkProviderInterface;
use Psr\Link\LinkInterface;

/**
 * Class LinkProviderTrait
 *
 * @implements LinkProviderInterface
 */
trait LinkProviderTrait
{
    /**
     * An array of the links in this provider.
     *
     * The keys of the array MUST be the spl_object_hash() of the object being stored.
     * That helps to ensure uniqueness.
     *
     * @var LinkInterface[]
     */
    private $links = [];

    /**
     * {@inheritdoc}
     */
    public function getLinks()
    {
        return $this->links;
    }

    /**
     * {@inheritdoc}
     */
    public function getLinksByRel($rel)
    {
        $filter = function (LinkInterface $link) use ($rel) {
            return in_array($rel, $link->getRels());
        };
        return array_filter($this->links, $filter);
    }
}

Filemanager

Name Type Size Permission Actions
EvolvableLinkProviderTrait.php File 797 B 0644
EvolvableLinkTrait.php File 1.59 KB 0644
GenericLinkProvider.php File 806 B 0644
Link.php File 497 B 0644
LinkProviderTrait.php File 832 B 0644
LinkTrait.php File 1.13 KB 0644
Relations.php File 32.33 KB 0644
TemplatedHrefTrait.php File 487 B 0644