[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.22.27.41: ~ $
<?php

namespace Psr\Link;

/**
 * An evolvable link provider value object.
 */
interface EvolvableLinkProviderInterface extends LinkProviderInterface
{
    /**
     * Returns an instance with the specified link included.
     *
     * If the specified link is already present, this method MUST return normally
     * without errors. The link is present if $link is === identical to a link
     * object already in the collection.
     *
     * @param LinkInterface $link
     *   A link object that should be included in this collection.
     * @return static
     */
    public function withLink(LinkInterface $link);

    /**
     * Returns an instance with the specifed link removed.
     *
     * If the specified link is not present, this method MUST return normally
     * without errors. The link is present if $link is === identical to a link
     * object already in the collection.
     *
     * @param LinkInterface $link
     *   The link to remove.
     * @return static
     */
    public function withoutLink(LinkInterface $link);
}

Filemanager

Name Type Size Permission Actions
EvolvableLinkInterface.php File 2.27 KB 0644
EvolvableLinkProviderInterface.php File 1.02 KB 0644
LinkInterface.php File 1.34 KB 0644
LinkProviderInterface.php File 786 B 0644