コード例 #1
0
 public function testOpenidFileStoreOptionsGetSet()
 {
     $path = $this->path;
     $store = new ezcAuthenticationOpenidFileStore($path);
     $options = new ezcAuthenticationOpenidFileStoreOptions();
     $store->setOptions($options);
     $this->assertEquals($options, $store->getOptions());
 }
コード例 #2
0
 /**
  * Creates a valid filename from the provided string.
  *
  * @param string $value A string which needs to be used as a valid filename
  * @return string
  */
 public function convertToFilename($value)
 {
     return parent::convertToFilename($value);
 }