mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-02-27 14:51:21 +01:00
18 lines
265 B
PHP
18 lines
265 B
PHP
<?php
|
|
|
|
namespace app\modules\server\interfaces;
|
|
|
|
use app\models\query\DeviceQuery;
|
|
|
|
/**
|
|
* Interface ItemInterface
|
|
* @package app\modules\server\interfaces
|
|
*/
|
|
interface ItemInterface
|
|
{
|
|
/**
|
|
* @return DeviceQuery
|
|
*/
|
|
public function getDevice();
|
|
}
|