mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-22 18:55:43 +01:00
14 lines
189 B
PHP
14 lines
189 B
PHP
<?php
|
|
|
|
namespace CachetHQ\Cachet\Segment;
|
|
|
|
interface RepositoryInterface
|
|
{
|
|
/**
|
|
* Returns the segment_write_key.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function fetch();
|
|
}
|