Staple_Log.php 216 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. *
  4. * @author Ironpilot
  5. *
  6. */
  7. abstract class Staple_Log
  8. {
  9. private $encryptLog = false;
  10. protected $dateAndTime;
  11. /**
  12. */
  13. function __construct()
  14. {
  15. }
  16. abstract function Log();
  17. }
  18. ?>