This repository has been archived by the owner on Nov 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new field for tracking domains that have been checked at least on…
…ce, increase check to 30 minutes, code format
- Loading branch information
Indy Griffiths
committed
Jun 28, 2018
1 parent
702865f
commit d99b99f
Showing
7 changed files
with
22 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
<?php | ||
|
||
/** | ||
* Class for managing ClearData | ||
* @package ${PACKAGE} | ||
* Class for managing ClearData. | ||
*/ | ||
class ClearData extends BuildTask { | ||
|
||
class ClearData extends BuildTask | ||
{ | ||
/** | ||
* Implement this method in the task subclass to | ||
* execute via the TaskRunner | ||
* execute via the TaskRunner. | ||
* | ||
* @param SS_HTTPRequest $request | ||
*/ | ||
public function run($request) { | ||
public function run($request) | ||
{ | ||
DB::query('TRUNCATE TABLE Domain'); | ||
DB::query('TRUNCATE TABLE Certificate'); | ||
} | ||
} | ||
} |