mirror of
https://codeberg.org/demostf/api.git
synced 2026-06-03 18:04:08 +02:00
10 lines
173 B
PHP
10 lines
173 B
PHP
<?php namespace Demo;
|
|
|
|
interface IDemoStore {
|
|
/**
|
|
* @param resource $stream
|
|
* @param string $name
|
|
* @return StoredDemo
|
|
*/
|
|
public function store($stream, $name);
|
|
}
|