mirror of
https://github.com/cachethq/cachet.git
synced 2026-07-01 08:15:55 +00: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();
|
|
}
|