Your IP : 216.73.216.95


Current Path : /var/test/www/storage2/vendor/divido/divido-php/lib/Divido/
Upload File :
Current File : /var/test/www/storage2/vendor/divido/divido-php/lib/Divido/SingletonApiResource.php

<?php

abstract class Divido_SingletonApiResource extends Divido_ApiResource
{
  protected static function _scopedSingletonRetrieve($class, $apiKey=null)
  {
    $instance = new $class(null, $apiKey);
    $instance->refresh();
    return $instance;
  }

  /**
   * @param Divido_SingletonApiResource $class
   * @return string The endpoint associated with this singleton class.
   */
  public static function classUrl($class)
  {
    $base = self::className($class);
    return "/v1/${base}";
  }

  /**
   * @return string The endpoint associated with this singleton API resource.
   */
  public function instanceUrl()
  {
    $class = get_class($this);
    $base = self::classUrl($class);
    return "$base";
  }
}