PersistantDataRetriever.inc 283 B

123456789101112
  1. <?php
  2. class PersistantDataRetriever {
  3. public static function getInstance() {
  4. return new PersistantDataRetriever(MySqliWrapper::getInstance());
  5. }
  6. private $mysqli;
  7. private function __construct(MySqliWrapper $mysqli) {
  8. $this->mysqli = $mysqli;
  9. }
  10. public function stuff() {
  11. }
  12. }