vendor/symfony/web-link/GenericLinkProvider.php line 17

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\WebLink;
  11. use Psr\Link\EvolvableLinkProviderInterface;
  12. use Psr\Link\LinkInterface;
  13. class GenericLinkProvider implements EvolvableLinkProviderInterface
  14. {
  15.     /**
  16.      * @var LinkInterface[]
  17.      */
  18.     private array $links = [];
  19.     /**
  20.      * @param LinkInterface[] $links
  21.      */
  22.     public function __construct(array $links = [])
  23.     {
  24.         $that $this;
  25.         foreach ($links as $link) {
  26.             $that $that->withLink($link);
  27.         }
  28.         $this->links $that->links;
  29.     }
  30.     /**
  31.      * {@inheritdoc}
  32.      */
  33.     public function getLinks(): array
  34.     {
  35.         return array_values($this->links);
  36.     }
  37.     /**
  38.      * {@inheritdoc}
  39.      */
  40.     public function getLinksByRel(string $rel): array
  41.     {
  42.         $links = [];
  43.         foreach ($this->links as $link) {
  44.             if (\in_array($rel$link->getRels())) {
  45.                 $links[] = $link;
  46.             }
  47.         }
  48.         return $links;
  49.     }
  50.     /**
  51.      * {@inheritdoc}
  52.      */
  53.     public function withLink(LinkInterface $link): static
  54.     {
  55.         $that = clone $this;
  56.         $that->links[spl_object_id($link)] = $link;
  57.         return $that;
  58.     }
  59.     /**
  60.      * {@inheritdoc}
  61.      */
  62.     public function withoutLink(LinkInterface $link): static
  63.     {
  64.         $that = clone $this;
  65.         unset($that->links[spl_object_id($link)]);
  66.         return $that;
  67.     }
  68. }