mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-03-31 15:07:47 +01:00
14 lines
209 B
PHP
14 lines
209 B
PHP
<?php
|
|
|
|
namespace Flasher\Prime\Stamp;
|
|
|
|
interface OrderableStampInterface
|
|
{
|
|
/**
|
|
* @param OrderableStampInterface $orderable
|
|
*
|
|
* @return int
|
|
*/
|
|
public function compare($orderable);
|
|
}
|