iwa-panda1

Manage Weather Data by International Weather Agency (Version 1)
Log | Files | Refs

Customer.php (193B)


      1 <?php
      2 class Customer extends Lollipop\DatabaseObject
      3 {
      4 	static function get_table(): string
      5 	{
      6 		return "customer";
      7 	}
      8 
      9 	static function get_primary(): string
     10 	{
     11 		return "customer_id";
     12 	}
     13 }
     14 ?>