| Total Complexity | 3 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | abstract class UnleashedBuildTask extends BuildTask |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var string |
||
| 20 | */ |
||
| 21 | protected $email_subject = "API Unleashed Software"; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var boolean |
||
| 25 | */ |
||
| 26 | protected $preview = false; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * echo to screen for Build Reports |
||
| 30 | * @param string $text the message to be printed |
||
| 31 | */ |
||
| 32 | protected function log($text) |
||
| 43 |