mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-16 18:04:34 -05:00
9 lines
150 B
PHP
9 lines
150 B
PHP
<?php
|
|
|
|
namespace Gazelle\Intf;
|
|
|
|
interface CollageEntry {
|
|
// objects that implement this can be added to collages
|
|
public function id(): int;
|
|
}
|