本文整理汇总了PHP中Store::getInstance方法的典型用法代码示例。如果您正苦于以下问题:PHP Store::getInstance方法的具体用法?PHP Store::getInstance怎么用?PHP Store::getInstance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Store
的用法示例。
在下文中一共展示了Store::getInstance方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: test_if_wp_query_is_done_right
function test_if_wp_query_is_done_right()
{
User::find();
$args = Store::getInstance()->get('args');
$this->assertEquals($args['post_type'], 'user', 'Check if search for the right post type');
$this->assertEquals($args['post_status'], 'publish', 'Check if search for the right post status');
$this->assertEquals($args['paged'], 1, 'Check if search for the right post page');
$this->assertEquals($args['limit'], -1, 'Check if search without limit');
}
示例2: getInstance
public static function getInstance($args = null)
{
if (!isset($args['class'])) {
$args['class'] = 'Weaver';
}
if (!isset($args['db'])) {
$args['db'] = WEAVER_IRI;
}
return parent::getInstance($args);
}
示例3: getInstance
public static function getInstance($args = null)
{
if (!isset($args['class'])) {
$args['class'] = 'Media';
}
if (!isset($args['db'])) {
$args['db'] = MEDIA_IRI;
}
return parent::getInstance($args);
}
示例4: __construct
public function __construct($args)
{
Store::getInstance()->set('args', $args);
}
示例5: deleteJob
public static function deleteJob($job)
{
Store::getInstance()->delete($job);
}