Backend\Core\Engine\Base\Cronjob::execute PHP Method

execute() public method

public execute ( )
    public function execute()
    {
    }

Usage Example

示例#1
0
 /**
  * @return Response
  */
 public function display()
 {
     $this->cronjob->execute();
     // a cronjob does not have output, so we return a empty string as response
     // this is not a correct solution, in time cronjobs should have there own frontcontroller.
     return new Response('');
 }
All Usage Examples Of Backend\Core\Engine\Base\Cronjob::execute