17 lines
274 B
PHP
Executable File
17 lines
274 B
PHP
Executable File
<?php
|
|
|
|
namespace PrintNode;
|
|
|
|
interface EntityInterface
|
|
{
|
|
/**
|
|
* Return an array of properties that
|
|
* are foreign keys and relate to other Entity
|
|
* objects
|
|
* @param void
|
|
* @return string[]
|
|
*/
|
|
public function foreignKeyEntityMap();
|
|
|
|
}
|