コード例 #1
0
ファイル: FilePatch.php プロジェクト: zenmagick/zenmagick
 /**
  * Create new patch.
  *
  * @param string id Id of the patch.
  */
 public function __construct($id)
 {
     parent::__construct($id);
     clearstatcache();
 }
コード例 #2
0
ファイル: SQLPatch.php プロジェクト: zenmagick/zenmagick
 /**
  * Create new patch.
  *
  * @param string id Id of the patch.
  */
 public function __construct($id)
 {
     parent::__construct($id);
     $this->tables = array();
     $this->patchRoot = dirname(__DIR__) . '/etc';
 }