FRED™  3.0
FRED™: Framework for Rapid and Easy Development
Sql.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Rsi\Fred\Worker\Job;
4 
5 class Sql extends \Rsi\Fred\Worker\Job{
6 
7  protected $_sql = null;
8 
9  public function execute(){
10  $this->_worker->component('db')->execute($this->_sql);
11  }
12 
13 }