本文整理汇总了PHP中Cron::remove方法的典型用法代码示例。如果您正苦于以下问题:PHP Cron::remove方法的具体用法?PHP Cron::remove怎么用?PHP Cron::remove使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Cron
的用法示例。
在下文中一共展示了Cron::remove方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testRemoveCronJob
/**
* Test method for testing the method for removing a single cron job by name
*
* @covers \Liebig\Cron\Cron::remove
*/
public function testRemoveCronJob()
{
$i = 0;
Cron::add('test1', '* * * * *', function () use(&$i) {
$i++;
return false;
});
Cron::run();
$this->assertEquals(1, $i);
$this->assertEquals(1, \Liebig\Cron\Models\Manager::count());
$this->assertEquals(1, \Liebig\Cron\Models\Job::count());
$this->assertEquals(true, Cron::remove('test1'));
Cron::run();
$this->assertEquals(1, $i);
$this->assertEquals(2, \Liebig\Cron\Models\Manager::count());
$this->assertEquals(1, \Liebig\Cron\Models\Job::count());
Cron::add('test1', '* * * * *', function () use(&$i) {
$i++;
return false;
});
Cron::run();
$this->assertEquals(2, $i);
$this->assertEquals(3, \Liebig\Cron\Models\Manager::count());
$this->assertEquals(2, \Liebig\Cron\Models\Job::count());
Cron::run();
$this->assertEquals(3, $i);
$this->assertEquals(4, \Liebig\Cron\Models\Manager::count());
$this->assertEquals(3, \Liebig\Cron\Models\Job::count());
$this->assertEquals(true, Cron::remove('test1'));
Cron::run();
$this->assertEquals(3, $i);
$this->assertEquals(5, \Liebig\Cron\Models\Manager::count());
$this->assertEquals(3, \Liebig\Cron\Models\Job::count());
$this->assertEquals(false, Cron::remove('unknown'));
Cron::run();
$this->assertEquals(3, $i);
$this->assertEquals(6, \Liebig\Cron\Models\Manager::count());
$this->assertEquals(3, \Liebig\Cron\Models\Job::count());
}