-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSettings.php
More file actions
28 lines (26 loc) · 889 Bytes
/
Settings.php
File metadata and controls
28 lines (26 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
namespace Dfe\BlackbaudNetCommunity;
# 2016-11-19
# Аргумент $s для методов этого класса не нужен,
# потому что опции этого класса считывается только на витрине для текущего магазина.
/** @method static Settings s() */
final class Settings extends \Df\Sso\Settings {
/**
* 2016-11-19
* @used-by \Dfe\BlackbaudNetCommunity\Customer::validate()
* @used-by \Dfe\BlackbaudNetCommunity\Test\Main::t01()
*/
function privateKey():string {return $this->p();}
/**
* 2016-11-20
* @used-by \Dfe\BlackbaudNetCommunity\Url::get()
*/
function url():string {return $this->v();}
/**
* 2016-11-19
* @override
* @see \Df\Config\Settings::prefix()
* @used-by \Df\Config\Settings::v()
*/
protected function prefix():string {return 'df_sso/blackbaudNetCommunity';}
}