You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AbstractDbDataAccess.php 525B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: robin
  5. * Date: 6/10/16
  6. * Time: 1:12 PM
  7. */
  8. namespace Luticate\Utils\DataAccess;
  9. abstract class AbstractDbDataAccess
  10. {
  11. /**
  12. * @param $sqlType string
  13. * @return string
  14. */
  15. abstract public function sqlTypeToPhpType($sqlType);
  16. /**
  17. * @param $pdo \PDO
  18. * @return array
  19. */
  20. abstract public function getTablesFull($pdo);
  21. /**
  22. * @param $pdo \PDO
  23. * @return array
  24. */
  25. abstract public function getStoredProceduresFull($pdo);
  26. }