You are here

RemoteCookieInterface.php in Bakery Single Sign-On System 8.2

File

src/Cookies/RemoteCookieInterface.php
View source
<?php

namespace Drupal\bakery\Cookies;

interface RemoteCookieInterface extends CookieInterface {

  /**
   * Gets the remote path to deliver cookies too.
   *
   * @return mixed
   */
  public function getPath();

}

Interfaces